body {
    margin: 0;
    width: 100%;  
    display: flex;
    justify-content: center;  
    align-items: center; 
    font-family: var(--system-ui);
    box-sizing: border-box;
    flex-wrap: wrap;
} 
footer {
    text-align: left;
    width: 100%;
    display: block;      
    margin-top: 15px; 
    padding-left: 5px;
    padding-right: 5px;    
    max-width: 1200px;
}

.s-shadow { 
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 2px;
}
.centered {
    display: flex;
    justify-content: center;
    align-items: center; 
}
.button {
    padding: 5px; 
    min-width: 40px;
    height: 40px;
    background-color: rgb(146, 196, 146);
    border-radius: 5px;
    border: 0; 
    font-size: 15px;
}
.calendar-nav {
    /* Icon Size */
    --ggs: 1.0;

    display: flex;
    justify-content: center;
    align-items: center;
}
.button-option { 
    /* Icon Size */
    --ggs: 0.7;

    width: 30px;
    height: 30px;
    background-color: rgb(255, 255, 255);
    border-radius: 100%;
    border: 0;
    color: rgb(0, 0, 0); 

    display: flex;
    justify-content: center;  
    align-items: center; 
}
.button:hover { 
    background-color: rgb(91, 199, 87);
    color: rgb(0, 0, 0);  
} 
.button-option:hover { 
    background-color: rgb(255, 255, 255);
    color: rgb(100, 100, 100); 
}  
.task-dialog {
    border: 0;
    border-radius: 15px; 
    padding: 10px;
}
.task-menu {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    width: 200px; 
    border-radius: 15px; 
    z-index: 1; 
    justify-content: left;
    padding: 10px;
}
.task-text {
    width: 80%;
    background-color: rgb(194, 245, 160);
    border-radius: 5px;
    padding-left: 5px; 
    padding-right: 5px; 
    overflow: hidden;
    text-overflow: ellipsis;
}  
.task-option {
    width: 25px;
    height: 25px;
    float: right;
    background: 0;
    border: 0;
    display: flex;
    justify-content: center;  
    align-items: center;  
}
.task-option:hover {
    background: rgb(233, 233, 233);
    border-radius: 100%;
}
.task-item {   
    /* Icon Size */
    --ggs: 0.8;

    width: 100%;
    height: 30px;  
    background: 0;
    border-radius: 5px; 
    border: 0;  
    padding: 0;  

    display: inline-flex;
    justify-content: center;  
    align-items: center; 
} 
.title-bar {
    flex: 0 0 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    margin-bottom: 10px; 
    text-align: center;
}
.title-bar h3 {
    width: 200px; 
    margin: 5px
}
.container {
    width: 100%;
    max-width: 1200px; 
    display: grid; 
    grid-template-columns: repeat(7, 1fr); 
    align-items: center; 
    justify-content: center;   
    grid-gap: 5px; 
    padding-left: 10px;
    padding-right: 10px;
} 
.day {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.day-title {   
    height: 50px;  
    background-color: rgb(154, 196, 146);
    display: flex;
    align-items: center; 
    border-radius: 5px 5px 0 0;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 2px solid #e7e7e7;
    box-sizing: border-box;
}
.day-content {   
    height: 150px;  
    border-radius: 0 0 5px 5px;   
    overflow-y: auto;  
    background-color: #ffffff; 
    background-size: 30px 30px;
    background-attachment: local;
    background-image:  repeating-linear-gradient(0deg, #dbdbdb, #dbdbdb 1.3px, #ffffff 1.3px, #ffffff);
}
.current {  
    background: linear-gradient(135deg, #daffb8 50%, transparent 0),linear-gradient(-115deg, #80c980 30%, transparent 0);
    background-size: 10em 3em;
    background-color: #8ae08a !important; 
    border: 3px solid #55cf55;
    border-style: dashed;
    text-decoration: underline; 
} 
  
.weekend {
    background-color: rgb(188, 216, 135);
}
.not-month {
    opacity: 30%;
}
 
#task-content { 
    min-width: 300px;
    min-height: 300px;
    margin-top: 5px;
}
 
:root {
    --system-ui: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 17px;
} 
 
@media (max-width: 1205px) {
    .container {  
        grid-template-columns: repeat(5, 1fr); 
    }
}
@media (max-width: 768px) {
    .container {  
        grid-template-columns: 100%;  
        grid-gap: 5px; 
        padding-left: 5px;
        padding-right: 5px;
        max-width: 100%;
    }
    .not-month {
        display: none;
    }
}

 

