﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    background-color: #fff;
    margin: 0;
    min-height: 100vh;
    font-family:'Rubik', sans-serif;
}

a{
    color:#ccc;
    text-decoration:none;
}

/* Customize the scrollbar itself */
::-webkit-scrollbar {
    width: 8px; /* Adjust the width of the scrollbar */
}

/* Customize the track (background) */
::-webkit-scrollbar-track {
    background: #000;
    border-radius: 5px;
}

/* Customize the thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: #2e323c;
    border-radius: 5px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555; /* Even darker color on hover */
    }

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.frameinfo{
    margin-top:5px;
}

.renewPassword {
    color: #000;
}

.renewPassword:hover{
    color:cornflowerblue;
}

.RedFont{
    color:crimson;
}

.GreenFont {
    color:#0ecb82;
}

.text-center{
    margin:auto;
    text-align:center;
}

@media (max-width: 930px) {

    footer {
        background-color: #000;
        color: white;
        text-align: center;
        padding: 10px 0 90px 0;
        margin-top: auto;
    }

}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: #7868FE;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 8px;
    margin-bottom: 20px;
}

    .calendar-header button {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 5px 10px;
        margin: 0 5px;
        cursor: pointer;
    }

    .calendar-header span {
        font-weight: bold;
    }

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    font-family: 'Rubik', sans-serif;
}

.day {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin: 1px;
}

    .day:hover {
        background-color: #7868FE;
        color:#fff;
    }

    .day.today {
        background: linear-gradient(135deg, #f0f0f0, crimson);
        color: #fff;
        font-weight: bold;
        font-size: 1.1em;
    }

#month-year {
    font-size: 1rem;
    font-weight: normal;
    font-family: 'Rubik', sans-serif;
}

#prev-month, #next-month {
    cursor: pointer;
    color: #ffffff;
    font-size: 1.5rem;
    padding: 5px;
    margin-bottom: 3px;
    border: none;
    background: none;
    transition: color 0.3s ease;
}

    #prev-month:hover, #next-month:hover {
        color: #000;
    }

.highlight {
    background-color: #7868FE;
    color: white;
    border-radius: 50%;
    font-weight: bold;
}