.vis-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (prefers-color-scheme: light) {
    .vis-card {
        background-color: white;
    }
}

/*@media (prefers-color-scheme: dark) {*/
/*    .vis-card {*/
/*        background-color: #3a3a3a;*/
/*    }*/
/*}*/

@media screen and (max-width: 480px) {
    .vis-card {
        max-width: none;
        height: 100vh;
        justify-content: space-between;
        overflow: scroll;
    }
}

@media screen and (min-width: 480px) {
    .vis-card.vis-card-large {
        max-width: 58rem;
    }

    .vis-card.vis-card-medium {
        max-width: 36rem;
    }

    .vis-card.vis-card-small {
        max-width: 28rem;
    }
}

.vis-card-header {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    border-bottom: 1px solid #eee;
}

.vis-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.vis-card-description {
    font-size: 0.875rem;
    color: #666;
}

.vis-card-content {
    padding: 1.5rem;
}

.vis-card-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background-color: #fefefe;
}

.button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #f5f5f5;
}

.button.button-primary {
    padding: 0.75rem;
    background-color: #2563eb;
    color: white;
    border: none;
}

.button.button-primary:hover {
    background-color: #1639a1;
}

.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #eee;
}

.divider-text {
    position: relative;
    display: inline-block;
    padding: 0 0.5rem;
    background-color: white;
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.divider-text.divider-text-large {
    color: #888;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.link {
    font-size: 0.75rem;
    color: #2563eb;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.checkbox-group label {
    font-size: 0.875rem;
    color: #333;
}

.chevron {
    transition: transform 0.3s ease;
}

.chevron.up {
    transform: rotate(180deg);
}

.dashed-button {
    width: 100%;
    padding: 0.75rem;
    background-color: transparent;
    color: #666;
    border: 1px dashed #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.dashed-button:hover {
    background-color: #f9f9f9;
    color: #333;
}
