﻿.signup-container {
    max-width: 400px;
    margin: 50px auto;
    text-align: center;
}

.signup-logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.logo-text {
    color: black;
}

.logo-check {
    color: green;
}

.signup-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.password-box {
    display: flex;
    align-items: center;
}

.toggle-btn {
    background: none;
    border: none;
    margin-left: 5px;
    color: #2c2c2c;
    cursor: pointer;
    font-size: 13px;
}

.checkbox {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #333;
}

.terms {
    font-size: 13px;
    color: #555;
    margin: 15px 0;
}

.btn-green.big-btn {
    background: #3ebc3e;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
}

.secure-text {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.signup-footer {
    margin-top: 20px;
    font-size: 13px;
}

    .signup-footer a {
        color: #333;
        text-decoration: none;
    }

        .signup-footer a:hover {
            text-decoration: underline;
        }

.nav-link {
    padding: 10px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

    .nav-link.active {
        background: #333;
        color: white;
    }

.sidebar-linkbutton {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.card {
    flex: 1;
    min-width: 220px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .card h4 {
        color: #6b7280;
        margin-bottom: 6px;
    }

    .card p {
        font-size: 1.25rem;
        font-weight: bold;
        color: #1f2937;
    }

.chart-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

    .chart-card h4 {
        color: #374151;
        margin-bottom: 10px;
    }
.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

    .modern-table thead {
        background: #f8f9fb;
    }

    .modern-table th {
        text-align: left;
        padding: 12px 16px;
        font-weight: 600;
        color: #444;
        border-bottom: 2px solid #e6e6e6;
    }

    .modern-table td {
        padding: 12px 16px;
        border-bottom: 1px solid #f0f0f0;
    }

    .modern-table tbody tr:nth-child(even) {
        background: #fafafa;
    }

    .modern-table tbody tr:hover {
        background: #f1f6ff;
        transition: background 0.2s ease;
    }

.link {
    color: #2563eb;
    text-decoration: none;
}

    .link:hover {
        text-decoration: underline;
    }

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: capitalize;
}

    .status-badge.active {
        background: #dcfce7;
        color: #166534;
    }

    .status-badge.inactive {
        background: #fee2e2;
        color: #991b1b;
    }

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-icon {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.15s ease;
}

    .btn-icon:hover {
        transform: scale(1.2);
    }

    .btn-icon.edit {
        color: #2563eb;
    }

    .btn-icon.delete {
        color: #dc2626;
    }

.no-data {
    text-align: center;
    color: #888;
    padding: 20px;
}
