.dashboard-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;

    height: 100%;
    width: 100%;
    min-width: 250px;
    max-width: 250px;
    padding: 24px 16px;

    border: 1px solid var(--main-color);
    background-color: var(--background-color);

    border-radius: 16px;
    box-shadow: 0 0 2px 0 rgba(145, 158, 171, 0.20);
    cursor: pointer;
}

.dashboard-card:hover {
    box-shadow: 0 0 2px 0 rgba(145, 158, 171, 0.50);
}


.card-error {
    --main-color: #B10912;
    --background-color: rgba(177, 9, 18, 0.05);
}

.card-success {
    --main-color: #077036;
    --background-color: rgba(7, 112, 54, 0.05);
}

.card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: black !important;
    gap: 8px;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.documents-count {
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    margin-top: auto;
}

.card-icon {
    max-width: 40px;
    max-height: 40px;
    padding: 8px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon img {
    width: 24px;
    height: 24px;
}