/* --- ACTION BUTTON STYLE --- */
.action-button {
    padding: 12px 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: #FFD140;
    color: #1e1e2f;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.action-button:hover {
    background: #ffe066;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- POPUP STYLES --- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.popup.active {
    display: flex;
    opacity: 1;
}
.popup-content {
    position: relative; /* Needed for the close button */
    background: #1e1e2f;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}
.popup.active .popup-content {
    transform: scale(1);
}
.popup-content h3 {
    color: #FFD140;
    text-align: center;
    margin-top: 0;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ccc;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #2a2a4a;
    color: #fff;
    box-sizing: border-box;
}
#form-status {
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
}
