* {
    font-family: Roboto;
}

:root {
    --primary-color: #4a90e2;
    --bg-color: #f4f7f6;
    --text-color: #333;
    --selected-bg: #4a90e2;
    --selected-text: #fff;
}


html, body {
    background: var(--bg-color);
    margin: 0%;
    height: 100%;
}




.banner {
    display: flex;
    align-items: center;
    background-color: #4a90e2;
    color: white;
    margin-bottom: 15px;
    height: 60px;
}


.title {
    font-size: xx-large;
    font-weight: bold;
    margin-left: 15px;
    height: 80%;
    display: flex;
    align-items: center;
    float: left;
}

.logo {
    height: 60%;
    display: flex;
    align-items: center;
    margin-left: 20px;
    float: left;
}
.logo-image {
    height: 100%;
}   

.profile {
    height: 60%;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
    float: right;
    cursor: pointer;
}


table {
    border-collapse: collapse;
    font-size: large;
}

table td {
    padding: 15px;
}

table thead td {
    background-color: #54585d;
    color: #ffffff;
    font-weight: bold;
    font-size: larger;
    border: 1px solid #54585d;
}

table td {
    color: #636363;
    border: 1px solid #dddfe1;
}

table tbody tr {
    background-color: #f9fafb;
}

table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}


.widget {
    padding: 15px;
    padding-top: 0px;
    margin: 20px;
    float: left;
    box-shadow: 10px 5px 5px rgba(128, 128, 128, 0.493);
    background-color: rgb(241, 241, 241);
    border-radius: 20px;
}

#text {
    max-width: 400px;
}





.calendar-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 350px;
    overflow: hidden;
    float: left;
}

/* Header Styles */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--primary-color);
    color: white;
}

.calendar-header button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Grid Layout */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
    text-align: center;
}

.day-name {
    font-weight: bold;
    color: #888;
    font-size: 0.8rem;
    padding-bottom: 10px;
}

.day {
    padding: 10px 0;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.day.selectable:hover:not(.empty) {
    background: #eef2f3;
}

.day.selected {
    background: var(--selected-bg) !important;
    color: var(--selected-text);
}

.day.today {
    border: 2px solid var(--primary-color);
}

.empty {
    cursor: default;
}

.day.past {
    background-color: #ff0000;
    cursor: default;
}

.footer {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #666;
}

radio {
    margin-left: 20px;
    margin-right: 5px;
    scale: 1.5;
}

label {
    margin-right: 15px;
}