.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

.lang-toggle {
    text-align: right;
    margin-bottom: 20px;
}

.lang-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
}

.lang-btn.active {
    background: #4a90e2;
    color: white;
}

.tab-nav {
    border-bottom: 0;
    margin-bottom: 1px solid #e5e7eb;
}

.tab-btn {
    padding: 12px 24px;
    border: 1px solid #ddd;
    border-bottom: none;
    margin-right: 4px;
    background: #f5f5f5;
    cursor: pointer;
}

.tab-btn.active {
    background: white;
    border-bottom: 2px solid #4a90e2;
    margin-bottom: -2px;
}

.tab-content {
    display: none;
    padding: 20px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tab-content.active {
    display: block;
}

.component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.component-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.card-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.view-btn {
    background: #4a90e2;
    color: white;
}

.bid-btn {
    background: #45a049;
    color: white;
}

.qual-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-btn {
    background: #4a90e2;
    color: white;
}
/* Navigation Buttons Styling */
.nav-buttons {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    gap: 1rem;
    border: 1px solid #e9ecef;
}

.nav-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    color: #495057;
    background-color: white;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background-color: #e9ecef;
    color: #212529;
}

.nav-btn.active {
    background-color: #4dabf7;
    color: white;
    border-color: #4dabf7;
}

/* Google Translate Container */
.translate-container {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
}

/* Content Container */
.content {
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 1rem;
}

/* Container Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}
.division-select {
    width: 300px;
    height: 38px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,..."); /* Add dropdown arrow */
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.division-select:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74,144,226,0.2);
}

.search-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


.search-section input[type="text"] {
    width: 300px; /* Match the division-select width */
    height: 38px; /* Match the division-select height */
    padding: 8px 12px; /* Same padding as division-select */
    border: 1px solid #ccc; /* Match the border styling */
    border-radius: 4px; /* Match the border radius */
    box-sizing: border-box; /* Ensure padding doesn't affect size */
}
