/* Zoetek Team Portal - Custom Styles */

:root {
    --zoetek-primary: #0d6efd;
    --zoetek-primary-dark: #0a58ca;
    --zoetek-secondary: #6c757d;
    --zoetek-success: #198754;
    --zoetek-light: #f8f9fa;
    --zoetek-dark: #212529;
}

/* General */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--zoetek-light);
}

/* Login Page */
.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}

.login-container {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

.login-header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--zoetek-dark);
    margin-bottom: 0.5rem;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

/* Navbar */
.navbar-brand img {
    filter: brightness(0) invert(1);
}

/* Dashboard Cards */
.dashboard-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.dashboard-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
}

.dashboard-card .card-title {
    color: var(--zoetek-dark);
}

.dashboard-card .card-text {
    font-size: 0.95rem;
}

/* Card Icons (reusable) */
.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: var(--zoetek-primary);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    margin-top: auto;
    border-top: 1px solid #dee2e6;
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: var(--zoetek-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.input-group-text {
    background-color: var(--zoetek-light);
    border-color: #ced4da;
}

/* Buttons */
.btn-primary {
    background-color: var(--zoetek-primary);
    border-color: var(--zoetek-primary);
}

.btn-primary:hover {
    background-color: var(--zoetek-primary-dark);
    border-color: var(--zoetek-primary-dark);
}

/* Alerts */
.alert {
    border-radius: 0.5rem;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .login-card {
        padding: 1.5rem;
    }

    .dashboard-card .card-body {
        padding: 2rem 1.5rem !important;
    }

    .dashboard-card .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
