﻿.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: 0 !important;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-check-input, .form-check-label {
    margin: 0 5px;
}

.sign-in-logo-container {
    text-align: center;
    padding-top: 30px;
}

.sign-in-logo {
    width: 100px;
}

.brand-header {
    color: var(--dark-color);
    font-size: 28px;
    font-weight: var(--font-weight-light);
    text-align: center;
}

    .brand-header span {
        color: var(--primary-color);
    }

.tile {
    border: 2px solid var(--white-color);
    border-radius: 10px;
    background-color: white;
    padding: 10px 20px;
}

.stick-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stick-item {
    background-color: var(--white-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.stick-header {
    display: flex;
    justify-content: space-between;
    background-color: var(--grey-color);
    color: var(--dark-color);
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
}

    .stick-header .patient-name {
        font-size: 16px;
    }

    .stick-header .date {
        font-size: 14px;
        color: var(--p-color);
    }

.stick-details {
    margin-top: 10px;
    padding: 10px;
    background-color: var(--section-bg-color);
    border-radius: 6px;
}

    .stick-details .detail {
        font-size: 14px;
        color: var(--p-color);
    }

        .stick-details .detail strong {
            font-weight: bold;
        }

.stick-item:hover {
    background-color: #f8f8f8;
    cursor: pointer;
}

.list-group-item {
    background-color: #f8f8f8;
}

.badge {
    color: #717275;
    font-size: 14px;
}