/* Minimal Single Screen - Novinex Pay */

:root {
    /* Modern Dark Theme Colors */
    --primary: #3b82f6;        /* Bright blue */
    --primary-dark: #2563eb;   /* Darker blue for hover */
    --accent: #10b981;         /* Success green */
    --bg: #0f172a;            /* Dark slate background */
    --bg-secondary: #1e293b;    /* Darker slate for cards */
    --bg-card: #1e293b;        /* Dark cards */
    --text: #f1f5f9;           /* Light text for readability */
    --text-muted: #94a3b8;     /* Muted light gray text */
    --border: #334155;         /* Dark border */
    --border-hover: #475569;   /* Border on hover */
    --success: #10b981;        /* Success green */
    --warning: #f59e0b;        /* Warning amber */
    --error: #ef4444;          /* Error red */
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: var(--bg-secondary);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.app {
    min-height: 100vh;
}

.home-container {
    width: 100%;
    min-height: 100vh;
}

/* Hero - Single Screen */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.hero-content {
    max-width: 600px;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero .logo {
    width: 600px;
    height: auto;
    max-width: 90vw;
    margin: 2rem auto 5rem;
    object-fit: contain;
    display: block;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Features - Inline */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px var(--shadow);
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px var(--shadow-hover);
}

.feature-icon {
    font-size: 1.75rem;
}

.feature-text {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.1rem;
}

.footer-link {
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 0.5rem;
    }
    
    .hero .logo {
        width: 400px;
        height: auto;
        max-width: 85vw;
        margin: 1.5rem auto 4rem;
        padding: 0;
        object-fit: contain;
    }
    
    .features-grid {
        gap: 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-item {
        justify-content: center;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0.5rem;
    }
    
    .hero .logo {
        width: 350px;
        height: auto;
        max-width: 90vw;
        margin: 1rem auto 3rem;
        padding: 0;
        object-fit: contain;
    }
    
    .features-grid {
        gap: 0.75rem;
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary);
    color: white;
}

/* Payment Verification Pages */
.payment-verify-container,
.payment-result-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.payment-loading {
    text-align: center;
    color: var(--text-muted);
}

.spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.payment-result-content {
    max-width: 600px;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px var(--shadow), 0 2px 4px -1px var(--shadow);
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.result-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.result-message-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.result-message {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    text-align: left;
}

.result-details {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--text-muted);
}

.detail-value {
    font-weight: 500;
    color: var(--text);
}

.error-details {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.error-message {
    color: #ef4444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Processing state specific */
.payment-result-container.processing .result-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Success state specific */
.payment-result-container.success .result-icon {
    color: #10b981;
}

/* Failed state specific */
.payment-result-container.failed .result-icon {
    color: #ef4444;
}

@media (max-width: 640px) {
    .payment-result-content {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .result-logo-container {
        gap: 0.375rem;
        margin-bottom: 0.75rem;
    }
    
    .result-logo {
        height: 50px;
    }
    
    .result-logo-text {
        font-size: 1.1rem;
    }
    
    .result-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .result-message-container {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .result-message-container .result-icon {
        font-size: 1.1rem;
    }
    
    .result-message {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .result-details {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .detail-item {
        padding: 0.375rem 0;
    }
    
    .restaurant-contact-info {
        padding: 0.75rem;
        margin: 1rem 0;
    }
    
    .contact-message {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .result-actions {
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Order Status Page */
.order-status-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.order-status-loading {
    text-align: center;
    color: var(--text-muted);
}

.order-status-content {
    max-width: 700px;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px -1px var(--shadow), 0 2px 4px -1px var(--shadow);
}

.order-status-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.order-status-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.order-status-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.order-status-logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}

.order-status-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.order-id-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-id {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

.order-id strong {
    color: var(--text);
    font-weight: 600;
}

.status-card {
    margin-bottom: 2.5rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--bg);
    width: fit-content;
}

.status-icon {
    font-size: 1.5rem;
}

.status-processing {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.15);
}

.status-paid {
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.15);
}

.status-failed {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.15);
}

.status-unknown {
    color: var(--text-muted);
}

.order-link {
    margin: 1.5rem 0;
    text-align: center;
}

.order-link .link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.order-link .link:hover {
    color: var(--accent);
}

.auto-refresh-info {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 1rem 0;
}

.auto-refresh-complete {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    text-align: center;
}

.auto-refresh-message {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.payment-success-message {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    text-align: center;
}

.success-message {
    color: var(--success);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.auto-refresh-info {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.order-status-error {
    max-width: 600px;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px var(--shadow), 0 2px 4px -1px var(--shadow);
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.order-status-error h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.order-status-error p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Order Items Section - Invoice Style */
.order-items-section {
    margin: 2.5rem 0;
    border-top: 2px solid var(--border);
    padding-top: 2rem;
}

.order-items-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.75rem;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.order-item-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.order-item-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.order-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.order-item-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    flex: 1;
}

.order-item-number {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    background: var(--bg-card);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.order-item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.order-item-type {
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(37, 99, 235, 0.05);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
}

.order-item-quantity {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.order-item-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
}

.order-item-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.detail-section {
    margin-bottom: 1rem;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.ingredient-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 1rem;
}

.ingredient-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.ingredient-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.general-item {
    margin-bottom: 0.75rem;
}

.general-item:last-child {
    margin-bottom: 0;
}

.general-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* Order Details - Invoice Summary */
.order-details {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.order-details .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
}

.order-details .detail-item:last-child {
    border-bottom: none;
    border-top: 2px solid var(--border);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 700;
}

.order-details .detail-item:last-child .detail-label {
    font-size: 1.1rem;
    color: var(--text);
}

.order-details .detail-item:last-child .detail-value {
    font-size: 1.25rem;
    color: var(--primary);
}

@media (max-width: 640px) {
    .order-status-content,
    .order-status-error {
        padding: 2rem 1.5rem;
    }
    
    .order-status-logo {
        height: 50px;
    }
    
    .order-status-logo-text {
        font-size: 1.1rem;
    }
    
    .order-id-container {
        gap: 0.75rem;
    }
    
    .order-id {
        font-size: 0.9rem;
        word-break: break-word;
    }
    
    .order-id strong {
        display: block;
        margin-top: 0.25rem;
        font-size: 0.95rem;
    }
    
    .status-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .status-icon {
        font-size: 1.25rem;
    }
    
    .order-details .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .order-details .detail-label {
        font-size: 0.875rem;
    }
    
    .order-details .detail-value {
        text-align: left;
        font-size: 0.9rem;
        word-break: break-word;
        width: 100%;
    }
    
    .status-badge {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .order-item-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .order-item-info {
        flex-wrap: wrap;
    }
    
    .order-items-title {
        font-size: 1.25rem;
    }
}

/* Payment Pages Styles */
.payment-verify-container,
.payment-result-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg);
}

.payment-loading {
    text-align: center;
    color: var(--text);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.payment-result-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
}

.result-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.result-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.result-logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}

.result-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.result-message-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.result-message-container .result-icon {
    font-size: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
    margin: 0;
}

.result-message {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    text-align: left;
}

.result-details {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.restaurant-contact-info {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.contact-message {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.contact-message strong {
    color: var(--primary);
    font-weight: 600;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted);
    font-weight: 500;
    flex-shrink: 0;
}

.detail-value {
    color: var(--text);
    font-weight: 600;
    text-align: right;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.error-details {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.error-message {
    color: #ef4444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-hover);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg);
    border-color: var(--primary);
}

.payment-result-container.success .result-icon {
    color: #10b981;
}

.payment-result-container.processing .result-icon {
    color: var(--primary);
}

.payment-result-container.failed .result-icon {
    color: #ef4444;
}

.not-found-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg);
}

.not-found-content {
    text-align: center;
}

.not-found-content h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.not-found-content p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .payment-result-container {
        padding: 1rem;
        align-items: flex-start;
    }
    
    .payment-result-content {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .result-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-label {
        font-size: 0.875rem;
    }
    
    .detail-value {
        text-align: left;
        font-size: 0.9rem;
        word-break: break-word;
        width: 100%;
    }
}

