/* Login */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #064d42 0%, #0a7162 60%, #0d8574 100%);
}

.login-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 420px;
}

.login-card .btn-primary {
    background: #0a7162;
    border-color: #0a7162;
    font-weight: 600;
    padding: 10px;
}
.login-card .btn-primary:hover {
    background: #085c50;
    border-color: #085c50;
}

/* Dashboard Cards */
.dashboard-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(10, 113, 98, 0.2);
    border-color: #0a7162;
}

.dashboard-icon {
    font-size: 2.5rem;
    color: #0a7162;
}

/* Sidebar */
.sidebar {
    width: 250px;
    min-height: calc(100vh - 56px);
    flex-shrink: 0;
}

.sidebar .nav-link {
    color: #333;
    border-radius: 6px;
    margin-bottom: 2px;
    padding: 0.5rem 0.75rem;
}

.sidebar .nav-link:hover {
    background-color: #e9ecef;
}

.sidebar .nav-link.active {
    background-color: #0d6efd;
    color: white;
}

/* Dashboard Content Area */
.dashboard-content {
    min-height: 400px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #dee2e6;
}

/* Responsivo */
@media (max-width: 768px) {
    .login-card {
        margin: 1rem;
    }
}
