/**
 * Text Widget Styles
 * Size-based display options
 */

/* Base container */
.text-widget-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

/* Size variants */
.text-widget-size-fit {
    /* Auto-fit - widget sẽ tự adjust font size */
}

.text-widget-size-sm {
    max-width: 200px;
    margin: 0 auto;
}

.text-widget-size-sm .text-widget-value {
    font-size: 1.5em !important;
}

.text-widget-size-md {
    max-width: 300px;
    margin: 0 auto;
}

.text-widget-size-md .text-widget-value {
    font-size: 2.5em !important;
}

.text-widget-size-lg {
    max-width: 400px;
    margin: 0 auto;
}

.text-widget-size-lg .text-widget-value {
    font-size: 3.5em !important;
}

/* Value display */
.text-widget-value {
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
    transition: font-size 0.2s ease;
}
