body {
    margin: 0;
    font-family: 'Source Sans 3', sans-serif;
    background: linear-gradient(180deg, #3D73DB 0%, #75A4FF 100%);
    display: flex;
    justify-content: center;
    align-items: start;
    color: #333;
    padding: 16px;
}

.main{
    display: grid;
    justify-items: center;
    gap: 24px;
    width: 100%;
}

.main-error{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    min-height: calc(100vh - 32px);
}

.card {
    background: #fff;
    width: 100%;
    max-width: 700px;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0px 0px 16px 0px #0000004D;
    border: 1px solid #E0E0E0;
    display: grid;
    gap: 12px;
    min-height: 340px;
    align-content: flex-start;
    text-align: left;
}

.card-error {
    text-align: center;
    align-content: center;
    max-width: 460px;
    height: max-content;
    min-height: max-content;
    margin: auto 0;
}

.logo img {
    height: 48px;
}

h1,h3,p {
    margin: 0;
}

h1 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #141414;
}

h3 {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #141414;
}

p {
    font-size: 12px;
    color: #141414;
}

.subtitle {
    color: #595959;
    font-size: 14px;
    line-height: 16px;
}

hr {
    border: none;
    border-top: 1px solid #E0E0E0;
    width: 100%;
    height: 1px;
    margin: 0;
}

ul {
    text-align: left;
    font-size: 12px;
    margin: 0;
    color: #141414;
    padding-left: 12px;
}

ul li::marker {
    color: #4580F2;
}

a {
    color: #4580F2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.text-container {
    display: flex;
    align-content: center;
    gap: 6px;

    img{
       width: 16px;
        height: 16px;
    }
}


.button-link {
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    background: #4887FE;
    font-weight: 600;

    text-decoration: none;
    border-radius: 2px;
    border: none;
    font-family: sans-serif;
    text-align: center;
    transition: background 0.3s;
    width: max-content;
}

.button-link:hover {
    background: #558ffc;
    text-decoration: none;
}

.event-btn {
    color: #141414;
    background: #E0E0E0;
}

.note{
    border: 1px solid #C3D7FF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
}

.note-title{
    color: #4580F2;
}

.week {
    display: grid;
    gap: 4px;
}


/*error styles*/

.cancel-icon {
    height: 48px;
    width: 48px;
    justify-self: center;
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #4887FE;
    border: none;
    border-radius: 2px;
    padding: 4px 12px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    width: max-content;
    justify-self: center;

    img{
        width: 14px;
        height: 14px;
    }
}