/* Modālā loga fons */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 99999; /* Ļoti augsts, lai būtu virs visa */
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease;
}
.popup-modal.show {
    display: flex; opacity: 1; visibility: visible;
}
/* Kaste */
.popup-modal-content {
    background-color: #fff; padding: 40px;
    border-radius: 4px; width: 90%; max-width: 400px;
    position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif; text-align: left;
}
/* X poga */
.popup-close-btn {
    position: absolute; right: 15px; top: 10px;
    font-size: 28px; cursor: pointer; color: #aaa; line-height: 1;
}
.popup-close-btn:hover { color: #000; }
/* Virsraksti */
.popup-modal-content h2 {
    color: #330033; text-align: center;
    margin-top: 0; margin-bottom: 25px;
    font-weight: normal; font-size: 22px;
}
/* Formas elementi */
.popup-modal-content label {
    display: block; margin-bottom: 5px; color: #330033; font-size: 14px; font-weight: normal;
}
.popup-modal-content .form-control {
    width: 100%; padding: 10px; margin-bottom: 15px;
    border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; height: 40px;
}
/* Rozā poga */
.btn-popup-pink {
    width: 100%; background-color: #fa9ab8;
    color: white; border: none; padding: 12px; border-radius: 4px;
    font-weight: bold; cursor: pointer; font-size: 14px; text-transform: uppercase;
    margin-bottom: 10px; transition: background 0.3s;
}
.btn-popup-pink:hover { background-color: #f082a5; }
/* Baltā poga */
.btn-popup-white {
    display: block; width: 100%; background-color: white;
    color: #333; border: 1px solid #ddd; padding: 12px; border-radius: 4px;
    text-align: center; text-decoration: none; font-size: 14px; cursor: pointer;
    box-sizing: border-box; transition: background 0.3s;
}
.btn-popup-white:hover { background-color: #f9f9f9; }
/* Saites */
.popup-link-text {
    display: block; margin-top: 15px; text-decoration: underline; color: #333; font-size: 13px;
}
.popup-info-text { font-size: 13px; color: #555; margin-bottom: 20px; line-height: 1.5; }
.popup-buttons-row { display: flex; gap: 10px; }

.btn-login{
    font-size: 14px;
    border: none;
    background-color: transparent;
    color: black;
}
.account-login{
    margin-top: 10px;
}