/* Roman Numeral Converter Modern Styles */

.roman-numeral_mainCard__CrFWf {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

.roman-numeral_mainCard__CrFWf:hover {
    border-color: rgba(14, 165, 234, 0.3);
    box-shadow: 0 8px 32px rgba(14, 165, 234, 0.1);
}

[data-theme="light"] .roman-numeral_mainCard__CrFWf {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .roman-numeral_mainCard__CrFWf:hover {
    border-color: rgba(14, 165, 234, 0.3);
    box-shadow: 0 8px 32px rgba(14, 165, 234, 0.08);
}

/* Converter Row */
.roman-numeral_converterRow__1wcPB {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
}

[data-theme="light"] .roman-numeral_converterRow__1wcPB {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

.roman-numeral_converterItem__4TrxJ {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roman-numeral_input__SxPgD {
    width: 100%;
    padding: 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary, #e2e8f0);
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    outline: none;
    text-align: center;
}

.roman-numeral_input__SxPgD:focus {
    border-color: rgba(14, 165, 234, 0.5);
    box-shadow: 0 0 0 3px rgba(14, 165, 234, 0.1);
    background: rgba(15, 23, 42, 0.8);
}

[data-theme="light"] .roman-numeral_input__SxPgD {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-primary, #1e293b);
}

[data-theme="light"] .roman-numeral_input__SxPgD:focus {
    border-color: rgba(14, 165, 234, 0.5);
    box-shadow: 0 0 0 3px rgba(14, 165, 234, 0.08);
    background: #ffffff;
}

.roman-numeral_inputLabel__3SKyI {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary, #94a3b8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

[data-theme="light"] .roman-numeral_inputLabel__3SKyI {
    color: var(--text-secondary, #64748b);
}

.roman-numeral_arrow__XBFKm {
    font-size: 2rem;
    color: #0ea5e9;
    flex-shrink: 0;
}

.roman-numeral_result__TQ7sM {
    padding: 16px;
    background: rgba(14, 165, 234, 0.05);
    border: 1px solid rgba(14, 165, 234, 0.2);
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="light"] .roman-numeral_result__TQ7sM {
    background: rgba(14, 165, 234, 0.03);
    border-color: rgba(14, 165, 234, 0.15);
}

.roman-numeral_copyButton__mT43N {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px;
    background: rgba(14, 165, 234, 0.1);
    border: 1px solid rgba(14, 165, 234, 0.3);
    border-radius: 8px;
    color: #0ea5e9;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roman-numeral_copyButton__mT43N:hover {
    background: rgba(14, 165, 234, 0.2);
    border-color: rgba(14, 165, 234, 0.5);
    transform: scale(1.1);
}

.roman-numeral_copyButton__mT43N:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .roman-numeral_mainCard__CrFWf {
        padding: 24px 20px;
    }

    .roman-numeral_converterRow__1wcPB {
        flex-direction: column;
        gap: 16px;
    }

    .roman-numeral_arrow__XBFKm {
        transform: rotate(90deg);
    }

    .roman-numeral_input__SxPgD,
    .roman-numeral_result__TQ7sM {
        font-size: 1.25rem;
    }

    .roman-numeral_copyButton__mT43N {
        align-self: stretch;
        justify-content: center;
    }
}

