﻿
 
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);  
    z-index: 2000;
    display: none;
}

 
.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    width: 400px;
    max-width: 90%;
    border-radius: 8px;
    z-index: 2001;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    background: none;
    border: none;
    color: #d00659 !important;   
}

     
    .close-button:hover,
    .close-button:focus {
        color: #b0054f !important; 
        outline: none;   
    }

 
.contact-title {
    font-size: 24px;
    font-weight: bold;
    text-align: left; 
    margin-bottom: 15px;
    color: #d00659;  
}

 
.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

 
.submit-button {
    background-color: #d00659; 
    color: white;
    border: none;
    padding: 10px;
    width: 100%;   
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

    .submit-button:hover {
        background-color: #b0054f;   
    }


.logout-link {
    color: red;
    font-weight: normal;
}
