/* Container */
.gjc-auth-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.gjc-login-form,
.gjc-register-form {
    flex: 1;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

/* Dashboard Tabs */
.gjc-dashboard {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.gjc-tabs {
    display: flex;
    background: #f1f1f1;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
}

.gjc-tab-link {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
}

.gjc-tab-link:hover {
    background-color: #ddd;
}

.gjc-tab-link.active {
    background-color: #fff;
    border-bottom: 2px solid #0073aa;
}

.gjc-tab-link.gjc-logout {
    margin-left: auto;
    color: #d63638;
    text-decoration: none;
}

.gjc-tab-content {
    display: none;
    padding: 20px;
    animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Cards & Forms */
.gjc-card {
    background: #f9f9f9;
    border-left: 4px solid #0073aa;
    padding: 15px;
    margin-bottom: 15px;
}

.gjc-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 5px;
}

.gjc-table {
    width: 100%;
    border-collapse: collapse;
}

.gjc-table th,
.gjc-table td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.gjc-btn-small {
    padding: 5px 10px;
    font-size: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
}

.gjc-btn-small:hover {
    background: #005177;
}

.gjc-btn-primary {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background: #005177;
}

/* Modal */
.gjc-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.gjc-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
}

.gjc-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.gjc-close:hover,
.gjc-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}