/* Modal */
.apc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.apc-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 500px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.apc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.apcc-close-modal {
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
}

.apc-form-group {
    margin-bottom: 15px;
}

.apc-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.apc-input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-sizing: border-box;
}

.apc-login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-color);
}

.apc-login-container h2 {
    margin-top: 0;
    color: var(--primary-color);
    text-align: center;
}

.apc-login-container input {
    margin-bottom: 15px;
}

.apc-login-container button {
    width: 100%;
}