@font-face {
    font-family: BebasNeue;
    src: url(fonts//Oswald/Oswald-Regular.ttf);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5B387;
}

#widgets {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: left;
    padding: 20px;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: 5px;
    width: 18rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease-in-out;
    background-color: #44AEC2;
    color: white;
}

.card:hover {
    transform: scale(1.05);
}

#helpButton {
    width: 100%;
    background-color: transparent;
    border: 0.2rem solid #0d6efd;
    color: #0d6efd;
    font-size: 1.5rem;
    padding: 1rem 0;
    border-radius: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

nav {
    color: black;
    padding: 1em;
    text-align: right;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

nav a.active {
    font-weight: bold;
}

.shadow-lg {
    background: #44AEC2;
    color: white;
}

/* Calendar Styles */

.calendar {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.calendar-header {
    background-color: #44AEC2;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

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

.calendar-header button:hover {
    text-decoration: underline;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #ddd;
}

.calendar-cell {
    background-color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

.calendar-cell.header {
    background-color: #44AEC2;
    color: white;
    font-weight: bold;
}

.calendar-cell.today {
    background-color: #ffeeba;
    font-weight: bold;
}

/* Chat Message Styles */

.user-message {
    background-color: #007bff;
    color: white;
    padding: 0.6rem 1rem;
    margin: 0.3rem 0;
    border-radius: 1rem 1rem 0 1rem;
    max-width: 70%;
    word-wrap: break-word;
    align-self: flex-end;
}

.bot-message {
    background-color: #e9ecef;
    color: black;
    padding: 0.6rem 1rem;
    margin: 0.3rem 0;
    border-radius: 1rem 1rem 1rem 0;
    max-width: 70%;
    word-wrap: break-word;
    align-self: flex-start;
}

#chatResponses {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    height: 80vh;
}

#bot,
#user {
    display: flex;
    flex-direction: column;
    width: 48%;
    justify-content: flex-start;
    overflow-y: auto;
}

#bot {
    align-items: flex-start;
}

#user {
    align-items: flex-end;
}