* {
    margin: 0;
    padding: 0;
}

body {
    background-color: aqua;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-y: scroll;
    overflow-x: hidden;
}

/*-----------------------------------------------------------navbar--------------------------------------------------   */
nav {
    z-index: 99;
    position: fixed;
    display: flex;
    width: 100vw;
    align-items: center;
    background-color: silver;
    height: 75px;
    justify-content: space-between;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}

nav ul {
    overflow-y: auto;
    background-color: silver;
    display: flex;
    flex-direction: row-reverse;
    margin-right: 15px;
    height: 100%;
    list-style-type: none;
    overflow: hidden;
    width: 100%;
    align-items: center;
}

nav ul li {
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
    transition: font-size 0.3s ease;
    transition: background-color 0.5s ease;
    height: 50%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul li a {
    position: relative;
    text-decoration: none;
    color: black;
    width: 100%;
    height: 100%;
    padding: 10px;
    top: 4px;
}

ul li:hover {
    background-color: rgb(240, 202, 202);
    cursor: pointer;

    font-weight: bold;
    box-shadow: 5px 0px 5px 0px rgba(25, 10, 0.5, 0.5);
    transition: background-color 0.5s ease;
}

.nav-header {
    margin-left: 10px;
    text-align: center;
    height: 90%;
    width: 25%;
    align-self: flex-end;
    vertical-align: bottom;
    background-color: blueviolet;
    border: 1px solid blueviolet;
    border-radius: 15px 15px 0 0;
}

.nav-header h2 {
    position: relative;
    vertical-align: middle;
    height: 100%;
    text-align: center;
    top: 14px;
    letter-spacing: 3px;
    transition: font-size 0.3s ease;
    font-size: 1.4rem;
}


/*-------------------------------------------------toggle links btn ---------------------------------------------------*/

/*------------------------classes to be applied to the toggle button and the dropdown lnk list-------------------------------------*/


.nav-links {
    display: flex;
    flex-direction: column;
}
#logout-link{
    display: none;
}

/*----------------------------------------------------media queries----------------------------------------------------*/

/*---------------------------------------mobile--------------------------------------------*/

@media screen and (min-width: 1281px) {

    /*-------------------------------------navbar behaviour for full webpage-------------*/
    
    .nav-header:hover {
        font-size: 1.3rem;
        border-bottom: 4px solid blue;
        transition: border-bottom 0.2s ease;
    }

    #toggle-nav-menu {
        display: none;
    }

    .toggle-img {
        display: none;
    }

    .content {
        display: flex;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        padding: 2px 2px 2px 2px;
        justify-content: space-between;
        border-radius: 10px;

    }

    .content .day-info {

        height: 100%;
        position: relative;
        width: 56vw;
        padding: 10px 0px 0px 5px;
        background-color: blueviolet;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: top;
        overflow: auto;
        margin-top: 75px;

    }

    .extras #calendar {

        background-color: blue;
        align-self: flex-start;
        height: 67vh;
        width: 38vw;
        padding: 70px 20px 0px 5px;
        border-radius: 10px;
        margin-right: 15px;

    }

    .extras #weather-card {

        padding: 0px 20px 0px 5px;
        height: 21vh;
        width: 39vw;
        background-color: blue;
        border-radius: 10px;

    }

    .extras {

        height: 99.6%;
        margin-right: 1pxvw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

    }

    .nav-menu-links {
        display: hidden;
    }

    #back-btn {
        display: none;
    }

    /*-----------------------------------------adding tasks------------------*/
    .add-task-page {
        width: 60vw;
        height: 70vh;
    }

    /*-------------------calendar structure for wide screen----------------------*/

    caption {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 10px;
        width: 98%;

    }

    .caption-flex-part {
        margin-top: 10px;
        width: 100%;
        background-color: blueviolet;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        border-radius: 40px;
    }

    .caption-flex-part span {
        background-color: aqua;
        padding: 7px;
        font-size: 1.1rem;
        border-radius: 40px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-weight: bolder;
        box-shadow: 2px 2px 2px 2px rgba(0.9, 0.9, 0.9, 0.9);
    }

    #year {


        padding: 7px 152px;
        background-color: aqua;

    }

    #month {
        padding: 7px 150px;
        background-color: aqua;

    }

    #l-arrow-year,
    #l-arrow-month {
        background-image: url(./images/163768-arrow-left-free-photo.png);
        padding: 10px 20px;
        background-size: cover;
        background-position: center;
    }

    #r-arrow-year,
    #r-arrow-month {
        background-image: url(./images/arrow-icon-1177.png);
        padding: 10px 20px;
        background-size: cover;
        background-position: center;

    }



    #calendar table {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 80%;
        width: 100%;
    }

    #table-body {
        width: 100%;
        margin: 9px;
    }

    #table-body tr {
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        width: 100%;
        justify-content: space-evenly;

    }

    #table-body tr td {
        flex-basis: calc(100% / 8.7);
        padding: 6px 5px;
        text-align: center;
        width: calc(100%/7);

        background-color: aqua;
        margin: 3px 1px;
        border-radius: 5px;
        box-shadow: 2px 2px 2px 2px rgba(0.9, 0.9, 0.9, 0.9);
    }

    #table-head {
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        margin-top: 7px;
        text-align: center;
        margin-left: 8px;
        margin-right: 8px;
    }

    #table-head th {

        width: 5.25vw;
        text-align: center;
        background-color: aqua;
        border-radius: 5px;
        padding: 2px 1px;
        box-shadow: 2px 2px 2px 2px rgba(0.9, 0.9, 0.9, 0.9);
    }

    /*-------------------------calendar behaviour when hover------------------------------*/

    .caption-flex-part span:hover {
        box-shadow: 4px 4px 4px 4px rgba(0.9, 0.9, 0.9, 0.9);
        cursor: pointer;

    }

    #table-head th:hover {
        box-shadow: 4px 4px 4px 4px rgba(0.9, 0.9, 0.9, 0.9);
        cursor: pointer;
    }

    #table-body tr td:hover {
        box-shadow: 4px 4px 4px 4px rgba(0.9, 0.9, 0.9, 0.9);
        cursor: pointer;
        background-color: blue;
        color: black;
        font-weight: bolder;
    }

    #l-arrow-year:hover {
        padding: 12px 24px;
        transition: padding 0.3s ease;
    }

    #r-arrow-year:hover {
        padding: 12px 24px;
        transition: padding 0.3s ease;
    }

    #l-arrow-month:hover {
        padding: 12px 24px;
        transition: padding 0.3s ease;
    }

    #r-arrow-month:hover {
        padding: 12px 24px;
        transition: padding 0.3s ease;
    }

    /*---------------------------adding task page------------------------*/

    .task-container {

        position: fixed;
        top: 17%;
        left: 25%;
        bottom: 10%;
        right: 25%;
        z-index: 20;

        justify-content: center;
        font-weight: bold;
        height: 65%;
        padding: 20px;
        background-color: blueviolet;
        text-align: start;
        border-radius: 20px;

    }

    .task-container h2 {
        text-align: center;
        margin-bottom: 15px;
        letter-spacing: 2px;
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 2px solid black;
    }

    .task-container #task-form {
        width: 100%;
        
        align-items: center;
    }

    .task-container #task-name {
        width: 100%;
        height: 18px;
        padding: 5px;
        border-radius: 6px;
        border: 3px solid blue;
        resize: none;
    }

    .task-container #task-notes {
        width: 100%;
        height: 13vh;
        padding: 3px;
        border-radius: 6px;
        resize: none;   
        overflow-y: auto;
        border: 3px solid blue;

    }

    .task-container #task-date {
        border: 3px solid blue;
        height: 25px;
        align-self: center;
        padding: 3px;
        margin-left: 15px;
        border-radius: 6px;
    }

    .task-container #create {
        justify-content: center;
        align-self: center;
        width: 100%;
        padding: 15px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: bold;

    }

    .task-container #create:hover {
        cursor: pointer;
        box-shadow: 5px 5px 5px 5px rgba(25, 25, 25, 25);
        border: 3px solid blue;
    }

    .task-page-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        justify-content: center;
    }

    .overlay-create {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 1, 0.85);
        display: none;
    }

    .hidden {
        display: hidden;
    }

    .visibility {
        display: none;
    }

    .invisibility {
        display: inline-block;
    }

    .block {
        display: block;
    }

    .flex {
        display: flex;
    }

    /*--------------------------------------------edit-task-page----------------------------------------*/
    #edit-task-container {

        position: fixed;
        top: 15%;
        left: 25%;
        bottom: 15%;
        right: 25%;
        z-index: 20;

        justify-content: center;
        font-weight: bold;
        height: 65%;
        padding: 40px 30px;
        background-color: blueviolet;
        text-align: start;
        border-radius: 20px;

    }

    #edit-task-container h2 {
        text-align: center;
        margin-bottom: 5px;
        letter-spacing: 2px;
        border-bottom: 2px solid black;
    }

    #edit-task-container #edit-task-form {
        width: 100%;
        align-items: center;
    }

    #edit-task-container #edit-task-name {
        width: 100%;
        height: 18px;
        padding: 4px;
        border-radius: 6px;
        border: 3px solid blue;
        resize: none;
    }

    #edit-task-container #edit-task-notes {
        width: 100%;
        height: 18vh;
        padding: 3px;
        border-radius: 6px;
        resize: none;
        overflow-y: auto;
        border: 3px solid blue;

    }

    #edit-task-container #edit-task-date {
        border: 3px solid blue;
        height: 23px;
        align-self: center;
        padding: 3px;
        margin-left: 15px;
        border-radius: 6px;
    }

    #edit-task-container #edit {
        justify-content: center;
        width: 100%;
        padding: 15px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: bold;

    }

    #edit-task-container #edit:hover {
        cursor: pointer;
        box-shadow: 5px 5px 5px 5px rgba(25, 25, 25, 25);
        border: 3px solid blue;
    }

    .edit-task-page-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        justify-content: center;
    }

    #overlay-edit {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 1, 0.85);
        display: none;
    }

    /*---------------------------------------login-user-page ---------------------------------------------*/



    .overlay-login-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 1, 0.85);
        display: none;
    }

    .login-container {
        display: none;
        z-index: 152;

        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: violet;
        position: fixed;
        top: 20%;
        left: 25%;
        width: 50%;
        height: 50%;
        border-radius: 15px;
    }

    .login-container h2 {
        width: 100%;
        text-align: center;
        border-bottom: 2px solid black;
        font-size: 1.7rem;
    }

    #loginForm {
        width: 80%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 15px;
    }

    .input-group {
        display: flex;
        justify-content: left;
        text-align: left;
        font-size: 1.2rem;
    }

    .input-group #email {
        margin-left: 35px;

        padding: 3px;
    }

    .input-group #password {
        margin-left: 3px;
        padding: 3px;
    }

    #loginForm button {
        padding: 6px;
        border-radius: 10px;
        font-weight: bold;
        font-size: 1rem;
    }

    #loginForm button:hover {
        cursor: pointer;
        box-shadow: 0px 3px 5px rgba(25, 10, 10, 0.5);
    }

    #loginForm .signup-link {
        text-align: center;
        font-size: 1.2rem;
    }


    .overlay-signup-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 1, 0.85);
        display: none;
    }

    .signup-container {
        z-index: 99;
        position: fixed;
        display: none;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        top: 27.5%;
        left: 27%;
        width: 45%;
        height: 40%;
        background-color: silver;
        border-radius: 15px;
    }


    .signup-container h2 {
        width: 100%;
        text-align: center;
        border-bottom: 2px solid black;
        padding-bottom: 7px;
    }

    .signup-form {
        margin-top: 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 80%;
        height: 100%;
    }

    .signup-form input {
        width: 70%;
        padding: 6px;
        border-radius: 10px;
    }

    .signup-form button {
        width: 60%;
        font-size: 1.2rem;
        color: aliceblue;
        background-color: blue;
        padding: 6px;
        margin-top: 10px;
        border-radius: 10px;
    }




    /*------------------------------------styles for the tasks loaded on the task display page--------------------------*/

    .content .day-info {
        height: 88%;
        position: relative;

    }

    .content .day-info .task-added {

        height: auto;
        width: 95%;
        background-color: blue;
        margin-top: 15px;
        border-radius: 10px;
        word-wrap: break-word;
        border: 3px solid blueviolet;
        display: flex;
        flex-direction: column;
        justify-content: end;
        padding: 10px 15px 10px 5px;



    }

    .content .day-info div h3 {
        height: auto;
        background-color: aqua;
        width: 75%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;

        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
        word-wrap: break-word;

        border-left: 3px solid black;
        border-right: 3px solid black;
        border-top: 3px solid black;
        padding-bottom: 4px;

    }

    .content .day-info div p {
        text-align: left;
        height: auto;
        background-color: aqua;
        width: auto;
        padding: 5px;

        margin-right: 5px;
        word-wrap: break-word;
        border-bottom: 3px solid black;
        border-left: 3px solid black;
        border-right: 3px solid black;



    }

    .head-checkbox .checkbox {

        background-color: aqua;
        padding: 0 10px 0 10px;
        height: inherit;
        border-top: 3px solid black;
        border-right: 3px solid black;
        border-bottom: 3px solid black;
        border-left: 3px solid black;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        margin-right: 5px;
        width: 15%;
        color: black;
        text-align: center;
        transition: width 0.3s ease;
    }

    .head-checkbox {
        display: flex;
        justify-content: space-between;
    }

    .checkbox:hover {
        background-color: blueviolet;
        cursor: pointer;
        font-weight: bold;
        box-shadow: 5px 5px 5px 5px rgba(25, 25, 25, 25);
        width: 25%;



    }

    .checkbox:hover+.task-notes {
        box-shadow: 5px 5px 5px 5px rgba(25, 25, 25, 25);
    }

    #Delete-task,
    #Edit-task {
        width: 50%;
        background-color: aqua;
        border: 2px solid black;

        text-align: center;
        padding: 2px;
        font-size: 1rem;
        transition: width 0.3s ease;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    #Edit-del-btn {
        display: flex;
        width: 99.3%;
    }

    #Delete-task:hover {
        cursor: pointer;
        width: 65%;
        font-weight: bold;
        background-color: blueviolet;
    }

    #Edit-task:hover {
        cursor: pointer;
        width: 65%;
        font-weight: bold;
        background-color: blueviolet;
    }


    .content .day-info .task-added:hover {
        border: 3px solid blue;
        border-radius: 15px;
        box-shadow: 2px 2px 2px 2px rgba(15, 15, 15, 15);

    }

    .empty {
        height: 25px;

    }

    #no-tasks {
        font-size: 2rem;
        letter-spacing: 2px;
        word-spacing: 5px;
        padding-left: 10px;
    }

    /*-----------------------task-page scrollbar-----------------------------*/

    #day-info::-webkit-scrollbar {
        width: 10px;
    }

    #day-info::-webkit-scrollbar-thumb {
        background: blue;
        border-radius: 10px;
    }


    /*---------------------WRITE CODE TO REMOVE THE TASK FROM THE DIV WHEN THE CHECKBOX (TASK DOINE IS CLICKED)-------------------------*/


    /*------------------------------------------------------settings - feedback - help-----------------------------------------------------*/

    /*-------------------------------------------------settings page styles for large screens---------------------------------------*/
    #settings {
        height: 100%;
        width: 100%;
        background-color: blueviolet;
        display: none;

    }

    #settings #settings-list {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: 100%;
        width: 100%;
    }

    #settings-list li {
        display: flex;
        text-align: center;
        width: 99%;
        height: 8vh;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    /*-------------------------------------------------help page styles-----------------------------------------------------*/
    #help {
        height: 100%;
        width: 100%;
        background-color: blueviolet;
        display: none;
        flex-direction: column;
        justify-content: space-around;
        align-self: center;
    }

    .faq {
        display: flex;
        flex-direction: column;

    }

    #help .faq details summary {
        border-top: 2px solid aliceblue;
        border-right: 2px solid aliceblue;
        border-left: 2px solid aliceblue;
        background-color: aqua;
        margin-top: 5px;
        font-weight: bold;
        margin-right: 5px;
        margin-left: 5px;
        padding: 5px;
    }

    #help .faq details p {
        background-color: aqua;
        border-left: 2px solid aliceblue;
        border-bottom: 2px solid aliceblue;
        border-right: 2px solid aliceblue;
        margin-right: 5px;
        margin-left: 5px;
        margin-top: 0;
        padding: 8px;

    }

    #help .faq details summary:hover {
        cursor: pointer;
    }

    .faq-images {
        height: 40%;
        border: 1px solid black;
        width: 90%;
        align-self: center;
    }

    /*----------------------------------------------feedback form styles-----------------------------------------*/
    #feedb {
        max-height: 99vh;
        width: 97.3%;
        background-color: blueviolet;

        display: none;


    }

    #feedbackForm {
        display: flex;
        flex-direction: column;
        font-weight: 600;
        width: 100%;
        max-height: 99vh;

    }

    #feedb-submit {
        width: 100%;
        align-self: baseline;
        height: 50px;
        border-radius: 10px;
        background-color: aqua;
        justify-content: flex-end;
        font-size: large;
        font-weight: bold;
        cursor: pointer;
        margin-top: 25px;
        transition: box-shadow 0.3s ease-in;
    }

    #feedb-submit:hover {
        box-shadow: 1px 1px 1px 1px rgba(0.9, 0.9, 0.9, 0.9);
        font-size: 1.3rem;
        transition: 0.2s ease;
    }

    #feedb-issues {
        height: 100px;
        width: 97%;
        resize: none;
        padding: 5px;
        border-radius: 5px;
    }

    #feedb-improvement {
        height: 100px;
        width: 97%;
        resize: none;
        padding: 5px;
        border-radius: 5px;
    }

    #feedb-satisfaction,
    #feedb-satisfaction option {
        font-weight: bold;
        /* Makes the options bold */
    }

    #feedb-experience,
    #feedb-experience option {
        font-weight: bold;
    }

    /*--------------------------weather styles----------------------------*/
    .weather-card {
        width: 100%;
        height: 30vh;

        border-radius: 10px;
        padding: 10px;
        text-align: center;
        font-size: 14px;
        display: flex;

        justify-content: space-between;

    }

    .weather-info {
        width: 100%;
        /*-background: linear-gradient(135deg, #89f7fe, #66a6ff);*/
        background-color: blue;
        color: white;
        font-family: Arial, sans-serif;
        padding: 15px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease-in-out;


    }


    .weather-info:hover {
        transform: scale(1.05);
    }

    .weather-info h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .weather-info p {
        font-size: 1rem;

        font-weight: bold;
        margin: 5px 0;

    }

    .weather-info img {
        width: 50px;
        height: 50px;
        vertical-align: middle;
    }

    .weather-denied-card {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;


    }

    .weather-unavailable {
        margin-bottom: 12px;
        color: aliceblue;
    }

    .access-denied {
        margin-top: 12px;
        color: aliceblue;
    }

    .local-time {
        color: aliceblue;
        font-weight: bold;
        font-size: 1.8rem;
    }

    /* Optional: Add animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .weather-info {
        animation: fadeIn 0.5s ease-in-out;
    }

    .weather-status {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: end;
        padding-top: 10px;
    }

    /*----------------------------------------styling for login page and its overlay-------------------------*/

    .overlay-login {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 1, 0.85);
        display: none;
        z-index: 49;
    }

    .overlay-login:hover {
        cursor: pointer;
    }


    .login-page {
        position: fixed;
        top: 40%;
        bottom: 40%;
        left: 10%;
        width: 80%;

        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 51;
        display: none;

    }


    .login-signup-cards {
        display: flex;
        flex-direction: row;
        padding: 10px;
        align-items: center;
        justify-content: center;
        height: auto;
    }


    .login-card {
        margin-right: 10px;
        background-color: silver;
        padding: 70px 40px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        font-size: 1.5rem;
        border-radius: 18px;
        height: auto;

    }

    .signup-card {
        margin-left: 10px;
        background-color: silver;
        padding: 70px 40px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        font-size: 1.5rem;
        border-radius: 18px;
        text-align: end;
        height: auto;
    }


    .login-page-buttons {
        width: 62%;
        padding: 10px;
        background-color: blue;
        color: aliceblue;
        margin: 5px;
        font-size: 1.8rem;
        border-radius: 50%;
    }

    .login-page-buttons:hover {
        cursor: pointer;
        box-shadow: 0px 3px 5px rgba(25, 10, 10, 0.5);
    }


    /*-----------------------------------------------guest-details-page--------------------------------------------*/


    #usernameForm {
        display: flex;
        flex-direction: column;
        width: 80%;
        height: 100%;
        align-items: center;
        justify-content: space-around;
        font-size: 1.2rem;

    }

    #usernameForm input {
        padding: 5px;

    }

    #usernameForm button {
        width: 80%;
        padding: 5px;
        font-size: 1.2rem;
        background-color: blue;
        color: aliceblue;
        border-radius: 15px;

    }

    .add-task-icon {
    background-image: url(./images/plus-flat.png);
    background-size:auto;
    background-position: center;
    width: 8%;
    height: 9%;
    border: none;
    border-radius: 10%;
    z-index: 12;
    position: fixed;
    bottom: 20px;
    left: 0.4%;
    box-shadow: 1px 1px 1px 1px rgba(0.9, 0.9, 0.9, 0.9);
    opacity: 1;
    transition: all 0.4s ease;
    background-color: silver;
}
.add-task-text{
    opacity: 0;
    font-weight: bold;
    font-size: 1.5rem;
}

.add-task-icon:hover {
    border: 2px solid silver;
    width: 30%;
    height: 9%;
    box-shadow: 5px 5px 5px 5px rgba(0.9, 0.9, 0.9, 0.9);
    opacity: 0.9;
    background-image: none;
    cursor: pointer;
}
.add-task-icon:hover .add-task-text{
    opacity: 1;

}

.add-task-img {
    border-radius: 50px;
    object-fit: fill;
}






}

@media screen and (max-width: 1280px) {

    .overlay-signup-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 1, 0.85);
        display: none;
    }

    .signup-container {
        z-index: 99;
        position: fixed;
        display: none;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        top: 25%;
        left: 20.5%;
        width: 65%;
        height: 50%;
        background-color: silver;
        border-radius: 15px;
    }


    .signup-container h2 {
        width: 100%;
        text-align: center;
        border-bottom: 2px solid black;
        padding-bottom: 7px;
    }

    .signup-form {
        margin-top: 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 80%;
        height: 100%;
    }

    .signup-form input {
        width: 90%;
        padding: 6px;
        border-radius: 10px;
    }

    .signup-form button {
        width: 90%;
        font-size: 1rem;
        color: aliceblue;
        background-color: blue;
        padding: 6px;
        margin-top: 10px;
        border-radius: 10px;
    }

    .signup-container p {
        margin-top: 5px;
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .overlay-signup-container:hover {
        cursor: pointer;
    }



    .overlay-login {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 1, 0.85);
        display: none;
        z-index: 49;
    }

    .overlay-login:hover {
        cursor: pointer;
    }


    .login-page {
        position: fixed;
        top: 30%;
        bottom: 30%;
        left: 20%;
        right: 20%;
        width: 60%;
        display: none;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        z-index: 51;
    }


    .login-signup-cards {
        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;
        height: auto;
    }


    .login-card {
        font-size: 1rem;
        background-color: silver;
        padding: 30px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        text-align: center;
        height: 100%;
        width: 100%;
    }

    .signup-card {
        margin-top: 20px;
        flex-direction: column;
        display: flex;
        justify-content: space-between;
        padding: 30px;
        border-radius: 10px;
        background-color: silver;
        text-align: center;
        height: 100%;
        width: 100%;
    }

    #usernameForm {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: space-around;
        font-size: 1.2rem;

    }

    #usernameForm input {
        padding: 3px;
        width: 60%;
    }

    #usernameForm button {
        width: 80%;
        padding: 5px;
        font-size: 1.2rem;
        background-color: blue;
        color: aliceblue;
        border-radius: 15px;
    }





    .login-page-buttons {
        width: 100%;
        padding: 10px;
        border-radius: 10px;
        background-color: blue;
        color: aliceblue;
        font-size: 1.3rem;
        font-weight: bold;
    }

    .login-page-buttons:hover {
        cursor: pointer;
        box-shadow: 0px 3px 5px rgba(25, 10, 10, 0.5);
    }



    /*----------------------------------------user-login-page-styles------------------------------------*/
    .overlay-login-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 1, 0.85);
        display: none;
    }

    .login-container {
        display: none;
        z-index: 152;

        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: violet;
        position: fixed;
        top: 15%;
        left: 5%;
        width: 90%;
        height: 60%;
        border-radius: 15px;
    }

    .login-container h2 {
        width: 100%;
        text-align: center;
        border-bottom: 2px solid black;
        font-size: 1.7rem;
        padding-bottom: 10px;
    }

    #loginForm {
        width: 90%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 15px;
    }

    .input-group {
        display: flex;
        justify-content: left;
        text-align: left;
        font-size: 1rem;
    }

    .input-group #email {
        margin-left: 32px;

        padding: 3px;
    }

    .input-group #password {
        margin-left: 3px;
        padding: 3px;
    }

    #loginForm button {
        padding: 6px;
        border-radius: 10px;
        font-weight: bold;
        font-size: 1rem;
    }

    #loginForm button:hover {
        cursor: pointer;
        box-shadow: 0px 3px 5px rgba(25, 10, 10, 0.5);
    }

    #loginForm .signup-link {
        text-align: center;
        font-size: 1rem;
    }


    body {
        overflow-x: hidden;
        background-color: aqua;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .content {
        display: flex;
        flex-direction: column;
        width: 100vw;
        min-height: 100vh;
        overflow-x: auto;
        margin-right: 10px;
        justify-content: space-between;
        border-radius: 10px;

    }

    .content .day-info {
        height: 100vh;
        width: 100vw;
        padding: 0px 10px 0px 5px;
        background-color: blueviolet;
        border-radius: 10px;
        align-items: center;
        margin-top: 75px;
    }

    .content .extras #calendar {
        background-color: blue;
        height: 66vh;
        width: 99vw;
        padding: 0px 5px 0px 5px;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        justify-content: space-around;


    }

    .extras #weather-card {
        padding: 0px 20px 0px 5px;
        height: 22vh;
        width: 98vw;
        background-color: blue;
        border-radius: 10px;
        margin-top: 5px;
    }

    .extras {
        height: 100%;
        border-radius: 10px;
        margin-right: 2px;
        margin-top: 5px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    /*---------------------------------------edit and delete buttons for small devices----------------------------------------------*/
    #no-tasks {
        font-size: 1rem;
        letter-spacing: 2px;
        word-spacing: 5px;
        padding-left: 10px;
        padding-bottom: 10px;

        text-align: center;
    }

    #Delete-task,
    #Edit-task {
        width: 50%;
        background-color: aqua;

        border: 2px solid black;
        text-align: center;
        padding: 2px;
        font-size: 1rem;
        transition: width 0.3s ease;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    #Edit-del-btn {
        display: flex;
        width: 99.3%;
    }

    #Delete-task:hover {
        cursor: pointer;
        width: 65%;
        font-weight: bold;
        background-color: blueviolet;
    }

    #Edit-task:hover {
        cursor: pointer;
        width: 65%;
        font-weight: bold;
        background-color: blueviolet;
    }

    /*------------------day-header for small screens---------------------------*/

    .nav-header {
        margin-left: 10px;
        text-align: center;
        height: 90%;
        width: 42%;
        align-self: flex-end;
        vertical-align: bottom;
        background-color: blueviolet;
        border: 1px solid blueviolet;
        border-radius: 15px 15px 0 0;
        font-size: smaller;
    }

    .nav-header h2 {
        position: relative;
        vertical-align: middle;
        height: 100%;
        text-align: center;
        top: 18px;
        font-size: 1.2rem;

    }

    .nav-header:hover {

        border-bottom: 4px solid blue;
        transition: border-bottom 0.5s ease;
    }

    .navbar {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 99;
    }


    /*-------------------------------list for mobiles----------------*/

    nav ul {
        position: absolute;
        background-color: aqua;
        display: flex;
        flex-direction: column-reverse;
        margin-top: 100vh;
        height: 91.31vh;
        list-style-type: none;
        align-items: right;
        width: 100%;
        align-items: center;
        overflow: scroll;
        padding-left: 13px;
    }

    nav ul li {
        text-align: center;
        text-decoration: none;
        transition: font-size 0.3s ease;
        transition: background-color 0.5s ease;

        padding: 8%;
        border-radius: 20px;
        width: 90%;
        align-items: center;
        display: flex;

    }

    nav ul li #All-Tasks {
        object-fit: fill;
        width: 100%;

        height: 100%;
        display: block;
        align-items: center;
    }

    nav ul li a {
        position: relative;
        text-decoration: none;
        color: black;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        padding: 15px;

        align-items: center;
        display: block;

        text-align: center;
    }

    nav ul li:hover {
        background-color: blueviolet;
        cursor: pointer;
        font-size: 1.2rem;
        font-weight: bold;
        box-shadow: 0px 3px 5px rgba(25, 10, 10, 0.5);
        transition: background-color 2s ease;
    }

    /*--------------------------------------------back from list button ------------------*/
    #back-btn {
        margin-right: 20px;
        text-align: center;
        height: 90%;
        width: 27%;
        align-self: flex-end;
        vertical-align: bottom;
        background-color: blueviolet;
        border: 1px solid blueviolet;
        border-radius: 15px 15px 0 0;
    }

    #back-btn h2 {
        position: relative;
        vertical-align: middle;
        height: 100%;
        text-align: center;
        top: 14px;
        letter-spacing: 2px;
        transition: font-size 0.5s ease;
    }

    #back-btn:hover {
        font-size: 1.2rem;
        border-bottom: 4px solid blue;
        cursor: pointer;
        transition: border-bottom 0.5s ease;
    }

    .nav-menu-links {
        display: none;
    }

    /*-------------------------------------------------toggle links btn ---------------------------------------------------*/

    #toggle-nav-menu {
        width: 55px;
        background-image: url(./images/nav-menu-img.jpg);
        background-size: cover;
        background-position: center;
        border-radius: 10px;
        margin-right: 8px;
        border: white;
    }

    .toggle-img {
        width: 55px;
        border-radius: 10px;
    }

    #toggle-nav-menu:hover {
        border: 2px solid blueviolet;
        cursor: pointer;
        box-shadow: 3px 5px 5px 3px rgba(0.9, 0.9, 0.9, 0.9);
    }



    /*----------------------------------------------calendar for small screen----------------------*/

    caption {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 10px;
        width: 100%;
    }

    .caption-flex-part {
        margin-top: 10px;
        width: 100%;
        background-color: blueviolet;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        border-radius: 40px;
    }

    .caption-flex-part span {
        background-color: aqua;
        padding: 7px;
        font-size: 1.1rem;
        border-radius: 40px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-weight: bolder;
        box-shadow: 2px 2px 2px 2px rgba(0.9, 0.9, 0.9, 0.9);
    }

    #year {


        padding: 7px 70px;
        background-color: aqua;

    }

    #month {
        padding: 7px 70px;
        background-color: aqua;


    }

    #l-arrow-year,
    #l-arrow-month {
        background-image: url(./images/163768-arrow-left-free-photo.png);
        padding: 10px 20px;
        background-size: cover;
        background-position: center;
    }

    #r-arrow-year,
    #r-arrow-month {
        background-image: url(./images/arrow-icon-1177.png);
        padding: 10px 20px;
        background-size: cover;
        background-position: center;

    }

    #calendar {

        height: 48vh;

    }

    #calendar table {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height: 100%;
        width: 98%;

    }

    #table-body {
        width: 100%;
        object-fit: contain;
    }

    #table-body tr {
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        width: 100%;
        justify-content: space-around;

    }

    #table-body tr td {
        flex-basis: calc(100% / 8);
        padding: 4px 2px;
        text-align: center;

        background-color: aqua;
        margin: 2px 1px;
        border-radius: 5px;
        box-shadow: 2px 2px 2px 2px rgba(0.9, 0.9, 0.9, 0.9);
    }

    #table-head {
        display: flex;
        width: 100%;
    }

    #table-head tr {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 7px;
        text-align: center;
        align-items: center;

    }

    #table-head th {

        margin: 3px 1px;
        width: calc(100%/7);
        text-align: center;
        background-color: aqua;
        border-radius: 5px;
        padding: 10px 1px;
        box-shadow: 2px 2px 2px 2px rgba(0.9, 0.9, 0.9, 0.9);

    }


    /*--------------------------weather styles----------------------------*/
    .weather-card {
        width: 250px;
        height: 150px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        padding: 10px;
        text-align: center;
        font-size: 14px;
        display: flex;
        justify-content: center;
        margin-bottom: 15vh;
    }

    /* Weather Card Styling */
    .weather-info {
        width: 100%;
        /*-background: linear-gradient(135deg, #89f7fe, #66a6ff);*/
        background-color: blue;
        color: white;
        font-family: Arial, sans-serif;
        padding: 15px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease-in-out;

        display: flex;
        flex-direction: column;



    }


    .weather-info:hover {
        transform: scale(1.05);
    }

    .weather-info h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
        width: 100%;
        margin-top: 0;


    }

    .weather-info p {
        font-weight: bold;


        margin: 5px 0;

    }

    .weather-info img {
        width: 50px;
        height: 50px;
        vertical-align: middle;
    }

    .weather-denied-card {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .weather-unavailable {
        margin-bottom: 12px;
        color: aliceblue;
    }

    .access-denied {
        margin-top: 12px;
        color: aliceblue;
    }

    .local-time {
        color: aliceblue;
        font-weight: bold;
        font-size: 1.8rem;
    }


    /* Optional: Add animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .weather-info {
        animation: fadeIn 0.5s ease-in-out;
    }

    .weather-status {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: end;
        padding-top: 10px;
    }



    /*-------------------------calendar behaviour when hover------------------------------*/

    .caption-flex-part span:hover {
        box-shadow: 4px 4px 4px 4px rgba(0.9, 0.9, 0.9, 0.9);
        cursor: pointer;

    }

    #table-head th:hover {
        box-shadow: 4px 4px 4px 4px rgba(0.9, 0.9, 0.9, 0.9);
        cursor: pointer;
    }

    #table-body tr td:hover {
        box-shadow: 4px 4px 4px 4px rgba(0.9, 0.9, 0.9, 0.9);
        cursor: pointer;
        background-color: blue;
        color: aliceblue;
        font-weight: bolder;
    }

    #l-arrow-year:hover {
        padding: 12px 24px;
        transition: padding 0.3s ease;
    }

    #r-arrow-year:hover {
        padding: 12px 24px;
        transition: padding 0.3s ease;
    }

    #l-arrow-month:hover {
        padding: 12px 24px;
        transition: padding 0.3s ease;
    }

    #r-arrow-month:hover {
        padding: 12px 24px;
        transition: padding 0.3s ease;
    }

    /*-------------------task page for mobile view-----------------------*/

    .task-container {

        position: fixed;
        top: 17%;
        left: 10%;
        bottom: 7%;
        right: 10%;
        z-index: 20;

        justify-content: center;
        align-items: center;
        font-weight: bold;
        height: 65%;
        padding: 25px;
        background-color: blueviolet;
        text-align: start;
        border-radius: 20px;

    }

    .task-container h2 {
        text-align: center;
        margin-bottom: 15px;
        border-bottom: 2px solid black;
        padding-bottom: 7px;


    }

    .task-container #task-form {
        width: 100%;
        align-items: center;
    }

    .task-container #task-name {
        width: 100%;
        height: 18px;
        padding: 5px;
        border-radius: 6px;
        border: 3px solid blue;
        resize: none;
    }

    .task-container #task-notes {
        width: 100%;
        height: 13vh;
        padding: 5px;
        border-radius: 6px;
        resize: none;
        overflow-y: auto;
        border: 3px solid blue;
    }

    .task-container #task-date {
        border: 3px solid blue;
        height: 25px;
        align-self: center;
        padding: 5px;
        margin-left: 15px;
        border-radius: 6px;
    }

    .task-container #create {
        justify-content: center;
        width: 100%;
        padding: 15px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: bold;

    }

    .task-container #create:hover {
        cursor: pointer;
        box-shadow: 5px 5px 5px 5px rgba(25, 25, 25, 25);
        border: 3px solid blue;
    }

    .task-page-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        justify-content: center;
    }

    .task-page-container h2 {
        font-size: 1.2rem;
    }

    .overlay-create {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 1, 0.85);
        display: none;
    }

    .visibility {
        display: none;
    }

    .invisibility {
        display: inline-block;
    }

    .block {
        display: block;
    }

    .flex {
        display: flex;
    }


    /*----------------------------------------------------------edit task page for mobile--------------------------------------*/

    #edit-task-container {

        position: fixed;
        top: 17%;
        left: 15%;
        bottom: 7%;
        right: 15%;
        z-index: 20;

        justify-content: center;
        font-weight: bold;
        height: 65%;
        padding: 25px;
        background-color: blueviolet;
        text-align: start;
        border-radius: 20px;

    }

    #edit-task-container h2 {
        text-align: center;
        margin-bottom: 15px;
        letter-spacing: 2px;
        border-bottom: 2px solid black;
        padding-bottom: 5px;

    }

    #edit-task-container #edit-task-form {
        width: 100%;
        align-items: center;
    }

    #edit-task-container #edit-task-name {
        width: 100%;
        height: 18px;
        padding: 5px;
        border-radius: 6px;
        border: 3px solid blue;
        resize: none;
    }

    #edit-task-container #edit-task-notes {
        width: 100%;
        height: 13vh;
        padding: 3px;
        border-radius: 6px;
        resize: none;
        overflow-y: auto;
        border: 3px solid blue;
    }

    #edit-task-container #edit-task-date {
        border: 3px solid blue;
        height: 25px;
        align-self: center;
        padding: 5px;
        margin-left: 15px;
        border-radius: 6px;
    }

    #edit-task-container #edit {
        justify-content: center;
        width: 100%;
        padding: 15px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: bold;

    }

    #edit-task-container #edit:hover {
        cursor: pointer;
        box-shadow: 5px 5px 5px 5px rgba(25, 25, 25, 25);
        border: 3px solid blue;
    }

    .edit-task-page-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        justify-content: center;
    }

    .overlay-edit {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 1, 0.85);
        display: none;
    }

    /*------------------------------------styles for the tasks loaded on the task display page--------------------------*/

    .content .day-info {

        height: 100%;
        width: 100vw;
        padding: 10px 0px 0px 5px;
        background-color: blueviolet;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: top;
        align-items: center;
        overflow: scroll;


    }



    .content .day-info div h3 {
        height: auto;
        background-color: aqua;
        width: 80%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;

        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
        word-wrap: break-word;

        border-left: 3px solid black;
        border-right: 3px solid black;
        border-top: 3px solid black;
        padding-bottom: 4px;


    }

    .content .day-info div p {
        text-align: left;
        height: auto;
        background-color: aqua;
        width: auto;
        padding: 5px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;


        word-wrap: break-word;
        border-left: 3px solid black;
        border-right: 3px solid black;
        border-bottom: 3px solid black;

    }


    /*-------------------------mobile view for added tasks---------------------------------*/

    .content .day-info .task-added {

        margin-top: 15px;
        height: auto;
        width: 95vw;
        background-color: blue;
        display: flex;
        flex-direction: column;
        align-self: flex-start;
        border-radius: 10px;
        word-wrap: break-word;

        margin-bottom: 15px;
        align-self: flex-start;
        overflow: hidden;



    }



    .head-checkbox .checkbox {
        background-color: aqua;
        padding: 0 10px 0 10px;
        height: inherit;
        border-top: 3px solid black;
        border-right: 3px solid black;
        border-bottom: 3px solid black;
        border-left: 3px solid black;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        font-size: smaller;
        width: 25%;
        color: black;
        text-align: center;
        transition: width 0.3s ease;


    }

    .head-checkbox {
        display: flex;
        justify-content: space-between;
        width: 95vw;

    }


    .checkbox:hover {
        background-color: blueviolet;
        cursor: pointer;
        color: black;
        width: 35%;
        box-shadow: 5px 5px 5px 5px rgba(25, 25, 25, 25);
    }

    .content .day-info .task-added:hover {
        border: 3px solid blue;

        box-shadow: 2px 2px 2px 2px rgba(15, 15, 15, 15);

    }

    .checkbox:hover+.task-notes {
        box-shadow: 5px 5px 5px 5px rgba(25, 25, 25, 25);
    }

    .head-checkbox .checkbox .task-done {
        position: relative;
        top: 5px;
    }

    .empty {
        height: 25px;

    }

    /*---------------------------settings-edit-feedback-----------------------------------------*/
    /*-----------------------------settings page styles for mobile devices-------------------------------------*/
    #settings {
        height: 100%;
        width: 100%;
        background-color: blueviolet;
        display: none;

    }

    #settings #settings-list {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: 100%;
        width: 100%;
    }

    #settings-list li {
        display: flex;
        text-align: center;
        width: 99%;
        height: 8vh;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    /*-----------------------------------------------------help-page-styles for mobile devices--------------------------------------*/
    #help {
        height: 100%;
        width: 100%;
        background-color: blueviolet;
        display: none;
        flex-direction: column;
        justify-content: space-around;
        align-self: center;
    }

    .faq {
        display: flex;
        flex-direction: column;
        margin-bottom: 5px;

    }

    #help .faq details summary {
        border-top: 2px solid aliceblue;
        border-right: 2px solid aliceblue;
        border-left: 2px solid aliceblue;
        background-color: aqua;
        margin-top: 5px;
        font-weight: bold;
        margin-right: 5px;
        margin-left: 5px;
        padding: 5px;
    }

    #help .faq details p {
        background-color: aqua;
        border-left: 2px solid aliceblue;
        border-bottom: 2px solid aliceblue;
        border-right: 2px solid aliceblue;
        margin-right: 5px;
        margin-left: 5px;
        margin-top: 0;
        padding: 8px;

    }

    #help .faq details summary:hover {
        cursor: pointer;
    }

    .faq-images {
        min-height: 50vh;
        border: 1px solid black;
        width: 90%;
        align-self: center;
        margin-top: 10px;
        margin-bottom: 20px;
    }



    /*----------------------------------------feedback-styles for mobile devices-----------------------------------*/
    #feedb {
        max-height: 99vh;
        width: 97.3%;
        background-color: blueviolet;

        display: none;


    }

    #feedbackForm {
        display: flex;
        flex-direction: column;
        font-weight: 600;
        width: 100%;
        max-height: 99vh;

    }

    #feedb-submit {
        width: 100%;
        align-self: baseline;
        height: 50px;
        border-radius: 10px;
        background-color: aqua;
        justify-content: flex-end;
        font-size: large;
        font-weight: bold;
        cursor: pointer;
        margin-top: 25px;
        transition: box-shadow 0.3s ease-in;
        margin-bottom: 7px;
    }

    #feedb-submit:hover {
        box-shadow: 1px 1px 1px 1px rgba(0.9, 0.9, 0.9, 0.9);
        font-size: 1.3rem;
        transition: 0.2s ease;
    }

    #feedb-issues {
        height: 100px;
        width: 97%;
        resize: none;
        padding: 5px;
        border-radius: 5px;
    }

    #feedb-improvement {
        height: 100px;
        width: 97%;
        resize: none;
        padding: 5px;
        border-radius: 5px;
    }

    #feedb-satisfaction,
    #feedb-satisfaction option {
        font-weight: bold;
        /* Makes the options bold */
    }

    #feedb-experience,
    #feedb-experience option {
        font-weight: bold;
    }

    /*-----add-task-buttons---------*/
    .add-task-icon {
        background-image: url(./images/plus-flat.png);
       background-color: silver;
        background-size: cover;
        background-position: center;
        width: 20%;
        height:8%;
        border: none;
        border-radius: 17%;
        z-index: 12;
        position: fixed;
        bottom: 20px;
        left: 40%;
        right: 40%;
        box-shadow: 1px 1px 1px 1px rgba(0.9, 0.9, 0.9, 0.9);
        opacity: 0.9;
         transition: all 0.4s ease;
    }
    .add-task-text{
        opacity: 0;                   /* hidden by default */
        transform: scale(0.8);        /* slightly smaller */
        transition: opacity 0.3s ease, transform 0.3s ease;
        color:black;
        font-weight: bold;
        display: block;               /* keep block, but invisible */
        position: relative;
    }
    .add-task-icon:hover {
        border: 2px solid silver;
        cursor: pointer;
        width: 50%;
        height: 10%;
        box-shadow: 5px 5px 5px 5px rgba(0.9, 0.9, 0.9, 0.9);
        opacity: 0.9;
        left: 25%;
        right: 25%;
        background-image: none;
        cursor: pointer;
    }
    .add-task-icon:hover .add-task-text {
        opacity: 1;                   /* fade in */
        transform: scale(1);   
        font-size: 1rem;
    }
    .add-task-img {
        border-radius: 50px;
        object-fit: fill;
    }




    /*-----------------------task-page scrollbar-----------------------------*/



}

/*----------------------------------------------------content-----------------------------------------------*/