﻿.page-t1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: var(--dash-bg);
}

.kartica-t1 {
    width: 100%;
    max-width: 500px;
    background: var(--dash-card-bg);
    border-radius: var(--dash-radius);
    box-shadow: var(--dash-shadow-lg);
    padding: 28px;
    transition: all 0.2s ease;
}

    .kartica-t1:hover {
        box-shadow: var(--dash-shadow-lg);
    }

.header-t1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

    .header-t1 h1 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dash-text);
    }

    .header-t1 p {
        margin: 4px 0 0 0;
        font-size: 0.875rem;
        color: var(--dash-text-muted);
    }

.t1-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--tint-brand);
    color: var(--emi-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.t1-divider {
    height: 1px;
    background: var(--dash-border);
    margin: 20px 0;
}

.t1-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
