.geeks {
    color: green;
  }
  
  .tabs-container {
    width: 100%;
    margin: 20px auto;
  }
  
  .tabs {
    display: flex;
  }
  
  .tab {
    cursor: pointer;
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-bottom: none;
    background-color: #f1f1f1;
  }
  
  .tab.active {
    background-color: #ddd;
  }
  
  .tab-content {
    border: 1px solid #ddd;
    padding: 10px;
  }
.tab-buttons {
  display: flex;
}
 
.tab-buttons button {
  margin-right: 10px;
  padding: 8px;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
}
 
.tab-buttons button.active {
  background-color: #ddd;
}
 
.tab-content {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
}
.both
{
  clear: both;
}

/* src/components/SpeedTestModal.css */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.result-item {
    padding: 1rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.result-item h4 {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-item h4 i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.result-item p {
    font-size: 1.75rem;
    font-weight: bold;
    color: #0d6efd;
    margin: 0;
}

.status-text {
    color: #6c757d;
    font-style: italic;
    font-weight: 500;
}
