.phone-selector-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

.selectors-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.select-wrapper {
    flex: 1;
    max-width: 300px;
}

#brand-select,
#model-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background-color: #fff;
}

#phone-details {
    margin-top: 20px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    
}

.details-container {
    display: flex;
    gap: 40px;
}

.phone-image {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
}

#phone-thumbnail {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.phone-info {
    flex: 1;
}

.phone-info h3 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 28px;
    font-weight: 600;
}

.phone-info .price {
    color: #2c5282;
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}

.phone-info .specs {
    color: #4a5568;
    line-height: 1.8;
    font-size: 16px;
    margin: 15px 0;
}

.repair-prices {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    
    
}

.repair-prices h4 {
    color: #2d3748;
    font-size: 20px;
    margin: 0 0 15px 0;
}

.repair-services-table {
    width: 100%;
    border-collapse: collapse;
}

.repair-services-table tr {
    border-bottom: 1px solid #edf2f7;
}

.repair-services-table tr:last-child {
    border-bottom: none;
}

.repair-services-table td {
    padding: 12px 0;
    color: #4a5568;
    font-size: 16px;
}

.repair-services-table .service-name {
    text-align: left;
    font-weight: 500;
}

.repair-services-table .service-price {
    text-align: right;
    font-weight: 600;
    color: #2c5282;
}

.error {
    color: #e53e3e;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #fed7d7;
}

/* Invalid License Styles */
.pbs-invalid-license {
    display: none;
}

body.pbs-license-invalid .pbs-invalid-license {
    display: block;
    padding: 20px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
    text-align: center;
    font-weight: bold;
    margin: 20px 0;
}

body.pbs-license-invalid .pbs-content {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .selectors-row {
        flex-direction: column;
    }
    
    .select-wrapper {
        max-width: 100%;
    }
    
    .details-container {
        flex-direction: column;
    }
    
    .phone-image {
        flex: 0 0 auto;
        margin-bottom: 20px;
    }
    
    .repair-prices li {
        flex-direction: column;
        text-align: left;
    }
    
    .repair-services-table td {
        padding: 3px 0;
        font-size: 14px;
    }
}


.table-container {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    gap: 30px;
  }
  
  .row {
    display: grid;
    gap: 10px;
       
  }
  
  .cell {
    padding: 3px;
    
  }

  .left-cell {
    width: 75%;
  }
  
  .right-cell {
    text-align: right;
  }
  
  /* Desktop layout (3:1 ratio) */
  @media (min-width: 768px) {
    .row {
      grid-template-columns: 3fr 1fr;
    }
  }
  
  /* Mobile layout (1:1 ratio) */
  @media (max-width: 767px) {
    .row {
      grid-template-columns: 1fr 1fr;
    }
  }
  
