﻿.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.nowrap {
    white-space: nowrap !important;
}

.duodecimo-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px 0;
}

.duodecimo-card {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 15px;
    min-width: 220px;
    flex: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.duodecimo-card.active {
    background: #215195;
    border-color: #215195;
    color: #fff;
}

.duodecimo-card-header {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.duodecimo-card.active .duodecimo-card-header {
    color: rgba(255,255,255,0.8);
}

.duodecimo-card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #215195;
    margin-bottom: 5px;
}

.duodecimo-card.active .duodecimo-card-value {
    color: #fff;
}

.duodecimo-card-footer {
    font-size: 0.75rem;
    color: #adb5bd;
}

.duodecimo-card.active .duodecimo-card-footer {
    color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .duodecimo-card {
        min-width: 100%;
    }
}
