/* Site Colors */
:root{
    --pageColor: #F0F0F7;
    --primaryColor: #43425D;
    --secondryColor: #333246;
    --purple: #A3A0FB;
    --darkColor: #606060;
    --lightColor: #F9F9F9;
    --button: #3B86FF;
    --active: #28C76F;
    --inactive: #C72842;
    --pending: #C2C728;
}
/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* Global styling */ 
*, *::before, *::after {
box-sizing: border-box;
}
a{
    text-decoration: none;
}
body{
    font-family: 'Poppins', sans-serif;
    background-color: var(--pageColor);
}
/* Left-side Nav menu */
.logo{
    max-width: 150px;
    display: block;
    margin: auto;
}
.sideMenu{
    max-width: 300px;
    background: var(--secondryColor);
}
.sideMenuTitle{
    background-color: var(--secondryColor);
    color: var(--lightColor);
    padding: 1em;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.5px;
}
.navBar{
    background-color: var(--primaryColor);
    color: var(--lightColor);
}
.navBar a{
    text-decoration: none;
    color: var(--lightColor);
}
.navBar a:active{
    text-decoration: none;
    color: var(--lightColor);
}
.sideMenuItem{
    display: flex;
    padding: 1em;
}
.sideMenuPage:hover{
    background-color: var(--secondryColor);
    border-left: solid 5px var(--purple);
    transition: border 0.2s ease-in;
}
li.active{
    background-color: var(--secondryColor);
    border-left: solid 5px var(--purple);
    color: var(--lightColor);
}
.sideMenuItem img{
    margin-right: 1em;
    max-width: 20px;
    max-height: 20px;
}
.navSec{
    background-color: var(--secondryColor);
    text-transform: uppercase;
}
.settings{
    margin-top: 2em;
}
/* Align the nav and the content area horizontally */
.myContainer{
    display: flex;
    justify-content: space-between;
}
/* The header of the content area */
.contentArea{
    width: 100%;
}
.header{
    padding: 1em;
    background-color: var(--lightColor);
    display: flex;
    justify-content: flex-end;
}
/* The body of content area */
.nestedContentArea{
    padding: 2em;
}
.my-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.program{
    max-width: 25%;
    background-color: #f7f7f7;
    padding: 1em 2em 2em 2em;
    margin: 1em;
}
.my-input{
    width: 100%;
    margin-bottom: 10px;
}

@media screen and (max-width: 1170px){
    .program{
        max-width: 100%;
        
    }
}

.editbutton{
    font-size: 10px;
    font-style: italic;
    color: red !important;
}
    /* The alert message box */
    .alert {
        padding: 20px;
        background-color: green; /* Red */
        color: white;
        margin-bottom: 15px;
        opacity: 1;
        transition: opacity 0.6s; /* 600ms to fade out */
        }
    
        /* The close button */
        .closebtn {
        margin-left: 15px;
        color: white;
        font-weight: bold;
        float: right;
        font-size: 22px;
        line-height: 20px;
        cursor: pointer;
        transition: 0.3s;
    }
    
    /* When moving the mouse over the close button */
    .closebtn:hover {
        color: black;
    }
    img.editIcon {
        width: 24px; /* أو الحجم الذي تفضله */
        height: 24px;
        vertical-align: middle;
}