/* modular transport calculator styles */
#transport-calculator {
    border-top: 4px solid var(--accent-blue);
    margin-top: 2rem;
}

.transport-container {
    padding: 1rem;
}

.mode-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 8px;
    width: fit-content;
}

.mode-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.mode-btn.active {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
}

.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 992px) {
    .transport-grid {
        grid-template-columns: 1fr;
    }
}

.transport-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.transport-results-card {
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(0, 209, 255, 0.2);
}

.calc-breakdown {
    margin-top: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.calc-breakdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.calc-breakdown li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.calc-breakdown li:last-child {
    border-bottom: none;
    padding-top: 15px;
    margin-top: 5px;
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
}

.total-label {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.transport-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 576px) {
    .transport-actions {
        grid-template-columns: 1fr;
    }
}

.btn-transport-solicitar {
    grid-column: 1 / -1;
    background: var(--accent-green) !important;
    color: #000 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    font-style: italic;
    line-height: 1.4;
    text-align: center;
}

/* Checkbox alignment fix */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s;
}
/* Admin Specific Styles for Transport Tab */
#admin-tab-transport .admin-table-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    overflow-x: auto;
}

.admin-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.badge-success {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.btn-action {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-action:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-action.whatsapp {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.btn-action.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
}

.btn-action.check {
    color: var(--accent-blue);
    border-color: rgba(0, 123, 255, 0.3);
}

.btn-action.check:hover {
    background: rgba(0, 123, 255, 0.1);
}

/* Badge for Tab Menu */
.admin-badge.admin-tab-badge {
    background: var(--accent-warning);
    color: #000;
    font-size: 0.7rem;
    padding: 2px 6px;
    margin-left: 5px;
    vertical-align: middle;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.checkbox-item input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Modal styles for transport solicitation */
#transport-request-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#transport-request-modal.active {
    display: flex;
}

.transport-modal-content {
    background: #1a1a1a;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.transport-modal-content h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    font-size: 1.8rem;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
