/*------------------------------ Imports other styles ------------------------------*/

@import url(header.css);
@import url(index.css);
@import url(contact.css);
@import url(about.css);
@import url(login.css);
@import url(admin.css);
@import url(services.css);
@import url(gallery.css);
@import url(footer.css);

/*------------------------------ Global ------------------------------*/

*{
    margin:0;
    padding:0;
}

body{
    background-color: #eaeaea;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/*------------------------------ Global Buttons ------------------------------*/

button {
    position: absolute;
    background-color:#3852FF;
    color: #fff;
    border:none; 
    border-radius:15px; 
    min-height:50px; 
    min-width: 120px;
    font-family: "Arial Narrow", Helvetica, sans-serif;
    font-weight: 600;
    font-size-adjust: 1rem;
}

button:hover{
    background-color:#2639AF;
    transition: 0.5s;
    cursor: pointer;
}

/*------------------------------ Global Modals ------------------------------*/


#modaloverlay{ 
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
} 

.editbutton{
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    text-decoration: none;
    color:red;
   z-index:1000 !important;
}

/*------------------------------ Global Edit Webpages ------------------------------*/

#edit-modal{
    display: none;  
    position: fixed; 
    z-index: 1000; 
    right:0;
    margin-right:29%;
    padding-right: 20px; 
    padding-top:-20px;
    top: 100px;
    width: 40%; 
    height: 80%;
    overflow: hidden; 
    background-color: #fefefe !important;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-weight: 600;
}  

#edit-modal::-webkit-scrollbar {
    display: none;
}

.terms-title{
    text-align:center;
    color:black;
    font-weight: 800;
}  

.edit-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    width: 80%; 
    overflow-y: auto;
    max-height:80%;
}

.edit-info{
    color: grey;
    font-weight:600;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}
