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

/* Bitcoin Connect Component Styling */
html {
    --bc-color-brand: #ff9900;
    --bc-color-brand-dark: #ffaa44;
    --bc-brand-mix: 100%;
    --bc-color-brand-button-text: #fff;
    --bc-color-brand-button-text-dark: #fff;
  }

body {
    font-family: Tahoma, 'MS Sans Serif', sans-serif;
    background: linear-gradient(135deg, #ffb366 0%, #ff9933 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* Windows XP Window Style */
.xp-window {
    background: #ECE9D8;
    border: 1px solid #0054E3;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.xp-title-bar {
    background: linear-gradient(180deg, #0997FF 0%, #0053EE 50%, #0050EE 50%, #06F 100%);
    padding: 3px 6px 3px 4px;
    color: white;
    font-weight: bold;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xp-title-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.xp-window-icon {
    width: 16px;
    height: 16px;
}

.xp-content {
    padding: 8px;
    background: #ECE9D8;
}

/* Login Container - XP Dialog Style */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ECE9D8;
    border: 2px solid;
    border-color: #e0e0e0 #666 #666 #e0e0e0;
    padding: 0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 380px;
    width: 90%;
    position: relative;
}

.login-container h1 {
    background: linear-gradient(180deg, #ffaa44 0%, #ff8800 50%, #ff8800 50%, #ff9900 100%) !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 4px 6px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5) !important;
    border-bottom: 1px solid #666 !important;
    position: relative !important;
    text-align: left !important;
    min-height: 20px !important;
    width: 100% !important;
    display: block !important;
}

.login-container p {
    color: #2c3e50;
    margin: 16px 12px;
    font-size: 11px;
    text-shadow: none;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 12px 12px 12px;
}

/* XP Text Input */
.username-input {
    padding: 3px 4px;
    border: 1px solid;
    border-color: #7F9DB9 #7F9DB9 #ECE9D8 #ECE9D8;
    background: #fff;
    color: #000;
    font-size: 11px;
    font-family: Tahoma, sans-serif;
    box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
}

.username-input::placeholder {
    color: #999;
}

.username-input:focus {
    outline: 1px dotted #000;
    outline-offset: -3px;
}

/* XP Button */
.enter-btn {
    background: linear-gradient(180deg, #f0f0f0 0%, #d4d4d4 100%);
    color: #000;
    border: 1px solid;
    border-color: #fff #000 #000 #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-family: Tahoma, sans-serif;
    cursor: pointer;
    box-shadow: inset -1px -1px 1px rgba(0,0,0,0.1), inset 1px 1px 1px rgba(255,255,255,0.9);
}

.enter-btn:hover {
    background: linear-gradient(180deg, #f8f8f8 0%, #dcdcdc 100%);
}

.enter-btn:active {
    background: linear-gradient(180deg, #d4d4d4 0%, #e8e8e8 100%);
    border-color: #000 #fff #fff #000;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2);
}

/* Market Container */
.market-container {
    display: none;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
    max-width: 1600px;
    margin: 0 auto;
}

.market-container.show {
    display: flex;
}

/* Info Panel - XP Window */
.info-panel {
    background: #ECE9D8;
    border: 2px solid;
    border-color: #e0e0e0 #666 #666 #e0e0e0;
    padding: 0;
    width: 260px;
    flex-shrink: 0;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.info-panel h2 {
    background: linear-gradient(180deg, #ffaa44 0%, #ff8800 50%, #ff8800 50%, #ff9900 100%);
    color: #ffffff;
    margin: 0;
    padding: 4px 6px;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    border-bottom: 1px solid #666;
    position: relative;
    text-align: left;
    min-height: 20px;
}

.info-panel h3 {
    color: #2c3e50;
    margin: 8px 0 4px 0;
    font-size: 14px;
    font-weight: bold;
    text-shadow: none;
}

.info-panel p {
    color: #2c3e50;
    margin: 2px 0;
    line-height: 1.4;
    font-size: 12px;
    text-shadow: none;
}

.info-panel > * {
    padding: 0 12px;
}

.info-panel > h2 {
    padding: 6px 8px;
}

.info-panel .content {
    padding: 8px;
    background: #ECE9D8;
}

.info-panel .content p {
    color: #2c3e50;
    margin: 2px 0;
    line-height: 1.4;
    font-size: 12px;
}

.info-panel .content div {
    color: #2c3e50;
}

.info-panel .content span {
    color: #2c3e50;
}

.player-count {
    font-weight: bold;
    color: #ff9900;
    font-size: 0.9rem;
    text-shadow: none;
}

.market-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Canvas - XP Inset Panel */
.market-canvas {
    border: 3px solid;
    border-color: #666 #e0e0e0 #e0e0e0 #666;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.2);
    background: #faf5eb;
    box-sizing: content-box;
}

/* Chat Panel - XP Window */
.chat-panel {
    background: #ECE9D8;
    border: 2px solid;
    border-color: #e0e0e0 #666 #666 #e0e0e0;
    padding: 0;
    width: 300px;
    flex-shrink: 0;
    height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    box-sizing: content-box;
    position: relative;
}

.chat-panel h3 {
    background: linear-gradient(180deg, #ffaa44 0%, #ff8800 50%, #ff8800 50%, #ff9900 100%);
    color: #ffffff;
    margin: 0;
    padding: 4px 6px;
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    border-bottom: 1px solid #666;
    text-align: left;
    min-height: 20px;
}

.chat-panel > div {
    padding: 8px;
}

#chatMessages {
    flex: 1;
    overflow-y: auto;
    background: #ffffff;
    border: 2px solid;
    border-color: #666 #e0e0e0 #e0e0e0 #666;
    padding: 4px;
    margin: 8px 8px 0 8px;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
    color: #2c3e50;
}

#chatMessages div {
    color: #2c3e50;
    margin-bottom: 1px;
}

#chatMessages span {
    color: #2c3e50;
}

#chatInput {
    flex: 1;
    padding: 3px 4px;
    border: 1px solid;
    border-color: #666 #e0e0e0 #e0e0e0 #666;
    background: #ffffff;
    color: #2c3e50;
    font-size: 12px;
    font-family: Tahoma, sans-serif;
    box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
}

#chatInput:focus {
    outline: 1px dotted #000;
    outline-offset: -3px;
}

#chatSend {
    background: linear-gradient(180deg, #f0f0f0 0%, #d4d4d4 100%);
    color: #000;
    border: 1px solid;
    border-color: #fff #000 #000 #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-family: Tahoma, sans-serif;
    cursor: pointer;
    font-weight: bold;
    box-shadow: inset -1px -1px 1px rgba(0,0,0,0.1), inset 1px 1px 1px rgba(255,255,255,0.9);
}

#chatSend:hover {
    background: linear-gradient(180deg, #f8f8f8 0%, #dcdcdc 100%);
}

#chatSend:active {
    background: linear-gradient(180deg, #d4d4d4 0%, #e8e8e8 100%);
    border-color: #000 #fff #fff #000;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2);
}

/* Interaction Panel - XP Dialog */
.interaction-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 2px solid;
    border-color: #e0e0e0 #666 #666 #e0e0e0;
    padding: 0;
    text-align: center;
    max-width: 320px;
    width: 80%;
    z-index: 1000;
    box-shadow: 2px 2px 8px rgba(255, 153, 0, 0.3);
}

.panel-title-bar {
    background: linear-gradient(180deg, #ffaa44 0%, #ff8800 50%, #ff8800 50%, #ff9900 100%);
    color: #ffffff;
    margin: 0;
    padding: 4px 6px;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #666;
}

.panel-title-bar h3 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    flex: 1;
}

.close-x-btn {
    background: linear-gradient(180deg, #ffaa44 0%, #ff8800 100%);
    border: 1px solid #666;
    border-top-color: #fff;
    border-left-color: #fff;
    color: #ffffff;
    width: 20px;
    height: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.close-x-btn:hover {
    background: linear-gradient(180deg, #ff8800 0%, #ffaa44 100%);
    border-color: #e0e0e0 #666 #666 #e0e0e0;
}

.close-x-btn:active {
    background: linear-gradient(180deg, #ff8800 0%, #ffaa44 100%);
    border-color: #666 #e0e0e0 #e0e0e0 #666;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2);
}

.stall-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 12px;
    background: #fff;
    border: 2px solid;
    border-color: #666 #e0e0e0 #e0e0e0 #666;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
}

.stall-item {
    background: transparent;
    padding: 6px 8px;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 12px;
    color: #000;
    text-align: left;
}

.stall-item:hover {
    background: transparent;
    color: #000;
}

.stall-item h4 {
    color: #5d4a37;
    margin: 0;
    font-size: 12px;
}

.stall-item p {
    color: #7f8c8d;
    font-size: 12px;
    margin: 0;
}



.hidden {
    display: none !important;
}

/* Virtual Joystick */
.joystick-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.joystick-base {
    width: 120px;
    height: 120px;
    background: rgba(236, 233, 216, 0.7);
    border: 3px solid;
    border-color: #fff #7A7A7A #7A7A7A #fff;
    border-radius: 50%;
    position: relative;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.joystick-stick {
    width: 50px;
    height: 50px;
    background: linear-gradient(180deg, #f0f0f0 0%, #d4d4d4 100%);
    border: 2px solid;
    border-color: #fff #000 #000 #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: inset -1px -1px 1px rgba(0,0,0,0.1), inset 1px 1px 1px rgba(255,255,255,0.9);
    transition: background 0.1s;
}

.joystick-base:active .joystick-stick {
    background: linear-gradient(180deg, #d4d4d4 0%, #e8e8e8 100%);
}

/* Action Buttons */
.action-buttons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(180deg, #7FD47F 0%, #52C252 100%);
    color: #000;
    border: 3px solid;
    border-color: #fff #3A8C3A #3A8C3A #fff;
    border-radius: 50%;
    font-size: 11px;
    font-family: Tahoma, sans-serif;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    transition: all 0.1s;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.action-btn-large:active {
    background: linear-gradient(180deg, #52C252 0%, #7FD47F 100%);
    border-color: #3A8C3A #fff #fff #3A8C3A;
    transform: scale(0.98);
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2);
}

/* Mobile warning */
.mobile-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffb366 0%, #ff9933 100%);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.mobile-warning-content {
    background: rgba(255, 153, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 3px solid;
    border-color: #e0e0e0 #666 #666 #e0e0e0;
    padding: 0;
    box-shadow: 2px 2px 8px rgba(255, 153, 0, 0.3);
    max-width: 380px;
}

.mobile-warning h1 {
    background: linear-gradient(180deg, #ffaa44 0%, #ff8800 50%, #ff8800 50%, #ff9900 100%);
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    padding: 6px 8px;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.mobile-warning p {
    color: #ffffff;
    font-size: 11px;
    line-height: 1.6;
    padding: 16px 12px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Scrollbar - XP Style */
::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background: #ECE9D8;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f0f0f0 0%, #d4d4d4 100%);
    border: 1px solid;
    border-color: #fff #000 #000 #fff;
    box-shadow: inset -1px -1px 1px rgba(0,0,0,0.1), inset 1px 1px 1px rgba(255,255,255,0.9);
}

::-webkit-scrollbar-button {
    background: linear-gradient(180deg, #f0f0f0 0%, #d4d4d4 100%);
    border: 1px solid;
    border-color: #fff #000 #000 #fff;
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-button:active {
    background: linear-gradient(180deg, #d4d4d4 0%, #e8e8e8 100%);
    border-color: #000 #fff #fff #000;
}

/* Wallet Settings - XP Style */
#wallet-controls {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: flex-start;
}

#wallet-controls label {
    color: #2c3e50;
    text-shadow: none;
}

#wallet-controls span {
    color: #2c3e50;
    text-shadow: none;
}

/* Responsive design */
@media (max-width: 1023px) {
    .mobile-warning {
        display: flex;
    }
    
    .login-container,
    .market-container {
        display: none !important;
    }
}

@media (min-width: 1024px) and (max-width: 1365px) {
    .market-container {
        flex-direction: row !important;
        align-items: flex-start;
        gap: 8px;
    }

    .info-panel {
        width: 260px;
        flex-shrink: 0;
    }

    .chat-panel {
        width: 300px;
        flex-shrink: 0;
        height: 460px;
    }
    
    .market-area {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }
    
    .market-canvas {
        display: block;
        width: 600px;
        height: 600px;
    }
}

@media (min-width: 1366px) {
    .market-container {
        flex-direction: row !important;
        align-items: flex-start;
        gap: 8px;
    }

    .info-panel {
        width: 260px;
        flex-shrink: 0;
    }

    .chat-panel {
        width: 300px;
        flex-shrink: 0;
        height: 600px;
    }
    
    .market-area {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }
    
    .market-canvas {
        display: block;
        width: 600px;
        height: 600px;
    }
}

/* Lightning Invoice Card Styles */
.lightning-invoice-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #ffc107;
    border-radius: 0;
    padding: 16px;
    margin: 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.invoice-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dee2e6;
}

.invoice-icon {
    font-size: 24px;
    margin-right: 8px;
}

.invoice-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
    flex: 1;
}

.copy-button {
    background: #6c757d;
    border: none;
    border-radius: 6px;
    color: white;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
    min-width: 32px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-button svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.copy-button:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.invoice-amount {
    font-size: 18px;
    font-weight: 700;
    color: #28a745;
    text-align: center;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.invoice-description {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 16px;
    font-style: italic;
}

.invoice-actions {
    display: flex;
    justify-content: center;
}

.pay-button {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    border: none;
    border-radius: 8px;
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
    min-width: 140px;
}

.pay-button:hover {
    background: linear-gradient(135deg, #e0a800 0%, #e67e00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.pay-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.pay-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Animation for card appearance */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lightning-invoice-card {
    animation: slideInUp 0.3s ease-out;
}

/* Fullscreen Image Modal */
#fullscreenModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
}

#fullscreenModal.hidden {
    display: none;
}

#fullscreenOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
}

#fullscreenContent {
    position: relative;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#fullscreenImage {
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    object-fit: contain;
}

#closeFullscreenBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    color: white;
    border: none;
    font-size: 48px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10002;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#closeFullscreenBtn:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Calendar Styles - Matching bullishMarket XP Theme */
.calendar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffb366 0%, #ff9933 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    font-family: Tahoma, 'MS Sans Serif', sans-serif;
}

.calendar-content {
    background: #ECE9D8;
    border: 2px solid;
    border-color: #e0e0e0 #666 #666 #e0e0e0;
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.calendar-content h1 {
    background: linear-gradient(180deg, #ffaa44 0%, #ff8800 50%, #ff8800 50%, #ff9900 100%);
    color: #ffffff;
    margin: 0;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    border-bottom: 1px solid #666;
    text-align: left;
}

.calendar-info {
    padding: 12px;
    background: #ECE9D8;
}

.calendar-info p {
    color: #2c3e50;
    margin: 8px 0;
    font-size: 12px;
    line-height: 1.4;
    text-shadow: none;
}

.events-list {
    margin: 12px 0;
}

.event-item {
    background: #ffffff;
    border: 1px solid #ccc;
    border-color: #e0e0e0 #999 #999 #e0e0e0;
    padding: 8px 12px;
    margin-bottom: 8px;
    text-align: left;
    box-shadow: inset 1px 1px 0 rgba(255,255,255,0.8), inset -1px -1px 0 rgba(0,0,0,0.2);
}

.event-item h3 {
    color: #ff9900;
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: bold;
    text-shadow: none;
}

.event-item .event-date {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 2px;
    font-size: 12px;
}

.event-item .event-time {
    color: #666;
    margin-bottom: 4px;
    font-size: 11px;
}

.event-item .event-description {
    color: #2c3e50;
    font-size: 11px;
    line-height: 1.3;
    margin: 0;
}

.calendar-footer {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #ccc;
}

.calendar-footer p {
    color: #666;
    font-size: 11px;
    margin: 0;
    text-align: center;
}