@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,200,0,0&icon_names=calendar_today,category,close,contacts,dashboard,description,event_note,home,logout,menu,news,newspaper,people&display=block");

* {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

a {
    color: #ff914d;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

aside {
    background-color: #f1f1f1;
    flex: 30%;
    padding: 20px;
}

aside a {
    align-items: center;
    border-radius: 16px;
    color: #545454;
    display: flex;
    margin-bottom: 5px;
    padding: 10px 20px;
}

aside a:hover {
    background-color: #ffffff;
    box-shadow: 0 5px 30px #0000001a;
    outline: 1px solid #ffffff4d;
    text-decoration: none;
}

aside a.active {
    background-color: #ff914d;
    color: #ffffff;
}

aside a.active:hover {
    outline: 1px solid #ff914d4d;
}

body {
    margin: 0;
}

button {
    align-items: center;
    background-color: #ff914d;
    border: none;
    border-radius: 16px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    padding: 10px 20px;
}

button:hover {
    box-shadow: 0 5px 30px #0000001a;
    outline: 1px solid #ff914d4d;
}

footer {
    color: #545454;
    font-size: small;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #545454;
}

h2, h3 {
    color: #1d0f37;
}

header {
    align-items: center;
    background: linear-gradient(135deg, #1d0f37, #ca054d);
    box-shadow: 0 5px 30px #0000001a;
    color: #ffffff;
    display: flex;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header button {
    background-color: transparent;
    color: #ffffff;
    display: none;
    font-size: 16px;
    margin-left: auto;
}

header button:hover {
    backdrop-filter: blur(5px);
    background-color: #ffffff33;
    box-shadow: 0 5px 30px #0000001a;
    outline: 1px solid #ffffff4d;
}

header h1 {
    cursor: pointer;
    font-weight: 800;
    line-height: 0.9;
}

header h1 .highlight {
    color: #ff914d;
}

input {
    appearance: none;
    background-color: #f1f1f1;
    border: none;
    border-radius: 16px;
    color: #545454;
    margin-block: 5px 10px;
    outline: none;
    padding: 10px 20px;
    width: 100%;
}

input:focus {
    box-shadow: 0 5px 30px #0000001a;
    outline: 1px solid #f1f1f14d;
}

input[type=submit] {
    background-color: #ff914d;
    color: #ffffff;
    cursor: pointer;
}

input[type=submit]:hover {
    box-shadow: 0 5px 30px #0000001a;
    outline: 1px solid #ff914d4d;
}

main {
    flex: 70%;
    padding: 20px;
}

nav {
    margin-left: auto;
}

nav.open {
    display: block;
}

nav a {
    align-items: center;
    border-radius: 16px;
    color: #ffffff;
    display: inline-flex;
    padding: 10px 20px;
}

nav a:hover {
    backdrop-filter: blur(5px);
    background-color: #ffffff33;
    box-shadow: 0 5px 30px #0000001a;
    outline: 1px solid #ffffff4d;
    text-decoration: none;
}

nav a.active {
    backdrop-filter: blur(5px);
    background-color: #ffffff33;
}

.alert {
    align-items: center;
    background-color: #1d0f37;
    border-radius: 16px;
    box-shadow: 0 5px 30px #0000001a;
    bottom: 0;
    color: #ffffff;
    display: flex;
    margin: 20px;
    padding: 10px 20px;
    position: fixed;
    right: 0;
}

.alert.danger {
    background-color: #ca054d;
}

.alert.success {
    background-color: #29514a;
}

.alert.warning {
    background-color: #ff914d;
}

.alert button {
    background-color: transparent;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    line-height: 20px;
    margin: -10px;
    margin-left: 10px;
    padding: 10px;
}

.alert button:hover {
    backdrop-filter: blur(5px);
    background-color: #ffffff33;
    box-shadow: 0 5px 30px #0000001a;
    outline: 1px solid #ffffff4d;
}

.material-symbols-rounded {
    margin-right: 5px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
    }

    header button {
        display: flex;
    }

    nav {
        display: none;
        margin-bottom: 10px;
        width: 100%;
    }

    nav a {
        margin-bottom: 5px;
        width: 100%;
    }

    .row {
        flex-direction: column;
    }
}