.daily-card {
    position: relative;

    width: 280px !important;
    max-width: 280px !important;
    min-width: 280px !important;

    min-height: 358px;

    padding: 22px 20px !important;

    border: 1px solid rgba(17, 17, 17, 0.16);

    background: transparent;
}

.date {
    position: relative;
    z-index: 3;

    margin-bottom: 18px;

    color: var(--dark-gray);

    font-size: 10px;
    letter-spacing: 3px;

    text-align: left;
    white-space: nowrap;
}

/* =========================================================
   CONTEÚDO NORMAL
   ========================================================= */

.daily-content {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    transition:
        opacity 0.9s ease-in-out,
        transform 0.9s ease-in-out,
        visibility 0s linear 0s;
}

/*
    Ao clicar em Remember, frase, opções,
    pontuação e botão desaparecem juntos.
*/

.daily-content.remembering {
    opacity: 0;
    visibility: hidden;

    transform: translateY(5px);

    pointer-events: none;

    transition:
        opacity 0.9s ease-in-out,
        transform 0.9s ease-in-out,
        visibility 0s linear 0.9s;
}

.daily-thought {
    min-height: 60px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 300;
    line-height: 1.45;
    text-align: center;
}

.daily-actions {
    margin-top: 16px;

    border-top: 1px solid var(--light-gray);
}

.daily-actions label {
    min-height: 36px !important;

    display: grid;
    grid-template-columns: 16px 1fr auto;
    align-items: center;
    gap: 8px;

    border-bottom: 1px solid var(--light-gray);

    cursor: pointer;
}

.daily-actions input {
    width: 12px;
    height: 12px;

    accent-color: var(--black);
}

.daily-actions span {
    font-size: 13px;
}

.daily-actions small {
    color: #77746e;

    font-size: 10px;
    white-space: nowrap;
}

.daily-footer {
    margin-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

#daily-score {
    flex-shrink: 0;

    font-size: 17px;
    font-weight: 300;

    white-space: nowrap;
}

#record-button {
    min-width: 96px !important;
    padding: 8px 11px !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    color: var(--black);

    border: 1px solid var(--black);

    cursor: pointer;

    font-size: 13px;
    white-space: nowrap;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

#record-button:hover {
    background: var(--black);
    color: #ffffff;

    transform: scale(1.02);
}

#record-button:disabled {
    cursor: default;
}

/* =========================================================
   CONFIRMAÇÃO
   ========================================================= */

.remember-confirmation {
    position: absolute;

    /*
        O topo considera o espaço ocupado pela data.
    */
    top: 58px;
    right: 18px;
    bottom: 20px;
    left: 18px;

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--black);

    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 1px;

    text-align: center;

    opacity: 0;
    visibility: hidden;

    transform: translateY(5px);

    transition:
        opacity 1.2s ease-in-out,
        transform 1.2s ease-in-out,
        visibility 0s linear 1.2s;
}

.remember-confirmation.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    transition:
        opacity 1.2s ease-in-out,
        transform 1.2s ease-in-out,
        visibility 0s linear 0s;
}

/* =========================================================
   TAMANHO FINAL DO PAINEL
   ========================================================= */

#bernard .daily-card {
    width: 270px;
    min-width: 270px;
    max-width: 270px;

    min-height: 350px;

    padding: 20px 18px;

    justify-self: end;

    background: transparent;
}

#bernard .daily-thought {
    min-height: 54px;

    font-size: 12px;
    line-height: 1.45;
}

#bernard .daily-actions {
    margin-top: 14px;
}

#bernard .daily-actions label {
    min-height: 34px;
}

#bernard .daily-actions span {
    font-size: 12px;
}

#bernard .daily-actions small {
    font-size: 10px;
}

#bernard .daily-footer {
    margin-top: 16px;
}

#bernard #daily-score {
    font-size: 16px;
}

#bernard #record-button {
    min-width: 90px;
    padding: 7px 10px;

    font-size: 12px;
}