:root {
    /* Authentic Windows 95 Palette */
    --win-gray: #C0C0C0;
    --win-gray-light: #FFFFFF; /* Highlighting edge */
    --win-gray-dark: #808080;  /* Shadow edge */
    --win-black: #000000;
    --win-white: #FFFFFF;
    --win-blue: #000080;
    --win-teal: #008080;
}

body {
    font-family: 'Press Start 2P', cursive; /* Retro pixel font */
    font-size: 8px; /* Base size for pixel font */
    margin: 0;
    overflow: hidden;
    background-color: var(--win-teal);
    cursor: url('/052dd0c023d9db3d5244875791c71c54-cursor-de-seta.png'), auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#desktop {
    background-color: var(--win-teal);
    height: calc(100vh - 28px); /* Adjusted for taskbar height */
    position: relative;
    overflow: hidden; 
    padding: 10px;
    box-sizing: border-box;
}

.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    text-align: center;
    color: white;
    padding: 5px;
    cursor: url('/052dd0c023d9db3d5244875791c71c54-cursor-de-seta.png'), auto;
    position: absolute; 
    touch-action: none; 
}

.desktop-icon img {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
}

.desktop-icon .icon-text {
    background-color: transparent; 
    padding: 1px 2px;
    font-size: 7px; 
    line-height: 1.2;
    word-break: break-word;
    /* Optional: Add a subtle text shadow for readability on teal */
    text-shadow: 1px 1px 0 #000000; 
}

.desktop-icon.selected .icon-text {
    background-color: var(--win-blue); 
    color: white;
    text-shadow: none;
    outline: 1px dotted var(--win-white); /* Dotted selection line */
}

/* --- TASKBAR --- */
#taskbar {
    background-color: var(--win-gray);
    height: 28px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 2px;
    box-sizing: border-box;
    z-index: 20000;
    /* Top white highlight */
    border-top: 1px solid var(--win-gray-light);
    box-shadow: 0 -1px 0 var(--win-gray-light); 
}

#startButton {
    background-color: var(--win-gray);
    /* 3D OUTSET LOOK */
    box-shadow: inset 1px 1px var(--win-gray-light), 
                inset -1px -1px var(--win-black), 
                inset -2px -2px var(--win-gray-dark);
    border: none;
    padding: 2px 6px;
    display: flex;
    align-items: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    font-weight: bold;
    cursor: url('/052dd0c023d9db3d5244875791c71c54-cursor-de-seta.png'), pointer;
    height: 22px;
    margin-right: 5px;
    margin-left: 2px;
}

/* Active/Pressed State */
#startButton:active, #startButton.active {
    /* 3D INSET LOOK */
    box-shadow: inset 1px 1px var(--win-black), 
                inset 2px 2px var(--win-gray-dark), 
                inset -1px -1px var(--win-gray-light);
    padding: 3px 5px 1px 7px; /* Shift content to simulate press */
}

#startButton img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

#taskbar-spacer {
    flex-grow: 1;
}

#clock {
    background-color: var(--win-gray);
    padding: 3px 8px;
    /* Sunken field look */
    box-shadow: inset 1px 1px var(--win-gray-dark), 
                inset -1px -1px var(--win-gray-light);
    border-right: 1px solid var(--win-gray-light);
    border-bottom: 1px solid var(--win-gray-light);
    min-width: 60px;
    text-align: center;
    font-size: 8px;
    margin-right: 2px;
    height: 16px;
    line-height: 16px;
}

/* --- START MENU --- */
#startMenu {
    position: absolute;
    bottom: 28px; 
    left: 2px;
    background-color: var(--win-gray);
    /* Heavy 3D Outset */
    box-shadow: inset 2px 2px var(--win-gray-light), 
                inset -2px -2px var(--win-black), 
                inset -3px -3px var(--win-gray-dark);
    padding: 2px; 
    z-index: 21000;
    min-width: 150px;
    display: flex; 
}

.start-menu-header-container {
    background-color: var(--win-gray-dark); 
    padding: 10px 2px;
    writing-mode: vertical-lr; 
    transform: rotate(180deg); 
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    background: linear-gradient(to right, #000080, #1084d0); /* Gradient for authentic look */
}

.start-menu-header-text {
    font-size: 14px; 
    color: var(--win-gray); 
    font-weight: bold;
    white-space: nowrap; 
    padding-right: 5px; 
    text-shadow: 1px 1px #000040;
}
.start-menu-header-text .ninety-five-text {
    color: var(--win-white); 
    font-style: italic;
    font-weight: normal;
}

#startMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1; 
}

#startMenu li {
    padding: 6px 10px 6px 8px;
    cursor: url('/052dd0c023d9db3d5244875791c71c54-cursor-de-seta.png'), pointer;
    display: flex;
    align-items: center;
    font-size: 8px;
    white-space: nowrap;
    color: black;
}

#startMenu li:hover {
    background-color: var(--win-blue); 
    color: white;
}

#startMenu li img.start-menu-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

#startMenu li.separator {
    height: 1px;
    background-color: var(--win-gray-dark);
    border-bottom: 1px solid var(--win-gray-light);
    margin: 4px 2px;
    padding: 0;
}
#startMenu li.separator:hover {
    background-color: var(--win-gray-dark);
}

/* --- WINDOWS --- */
.window {
    position: absolute;
    background-color: var(--win-gray);
    /* Authentic Window Border */
    box-shadow: inset 1px 1px var(--win-gray-light), 
                inset 2px 2px var(--win-white), 
                inset -1px -1px var(--win-black), 
                inset -2px -2px var(--win-gray-dark);
    padding: 3px; 
    min-width: 200px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden; 
    font-size: 8px;
}

.title-bar {
    background-color: var(--win-blue);
    background: linear-gradient(90deg, var(--win-blue), #1084d0);
    color: white;
    padding: 2px 2px 2px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 18px; 
    cursor: url('/052dd0c023d9db3d5244875791c71c54-cursor-de-seta.png'), move;
    flex-shrink: 0; 
    box-sizing: border-box;
    margin-bottom: 2px;
}
.window-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

.title-bar .title {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 8px;
    font-weight: bold;
}

.title-bar-buttons button {
    background-color: var(--win-gray);
    /* Button Outset Look */
    box-shadow: inset 1px 1px var(--win-gray-light), 
                inset -1px -1px var(--win-black), 
                inset -2px -2px var(--win-gray-dark);
    border: none;
    color: black;
    font-family: 'Times New Roman', Times, serif; 
    font-weight: bold;
    width: 16px;
    height: 14px;
    padding: 0;
    margin-left: 2px;
    line-height: 12px; 
    font-size: 9px; 
    cursor: url('/052dd0c023d9db3d5244875791c71c54-cursor-de-seta.png'), pointer;
}
.title-bar-buttons button:disabled {
    color: var(--win-gray-dark);
    text-shadow: 1px 1px var(--win-gray-light);
    cursor: default;
}

.title-bar-buttons button:active:not(:disabled) {
    /* Button Pressed Look */
    box-shadow: inset 1px 1px var(--win-black), 
                inset 2px 2px var(--win-gray-dark), 
                inset -1px -1px var(--win-gray-light);
    padding: 1px 0 0 1px;
}


.window-body {
    flex-grow: 1;
    background-color: var(--win-white); 
    color: black;
    overflow: auto; 
    font-size: 8px;
    /* Optional: Inset look for the content area */
    box-shadow: inset 1px 1px var(--win-black), inset -1px -1px var(--win-gray-light);
    margin: 0 1px 1px 1px;
}

/* Notepad Specific */
.window-body textarea {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: none;
    font-family: 'Courier New', Courier, monospace; 
    font-size: 10px; /* Readable monospace */
    resize: none; 
    padding: 5px;
    outline: none;
}
.window-body .app-content {
    padding: 10px;
}
.window-body .app-content img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    vertical-align: middle;
}

.folder-item {
    display: flex;
    align-items: center;
    padding: 3px 5px; 
    cursor: url('/052dd0c023d9db3d5244875791c71c54-cursor-de-seta.png'), pointer;
    border: 1px solid transparent; 
    margin: 1px 0; 
    font-size: 8px; 
}
.folder-item:hover {
    background-color: var(--win-blue); 
    color: white;
    border: 1px dotted var(--win-gray-light); 
}
.folder-item img {
    vertical-align: middle;
}

/* --- DEX APP STYLES (ADVANCED) --- */
.dex-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background-color: var(--win-gray);
    font-family: 'Press Start 2P', cursive;
    box-sizing: border-box;
    overflow: hidden; 
}

/* The Data Grid */
.dex-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 4px;
    padding: 5px;
    border-bottom: 2px solid var(--win-gray-dark);
    box-shadow: 0 1px 0 var(--win-white);
    background-color: var(--win-gray);
    flex-shrink: 0; /* Don't shrink the data */
}

.dex-stat-item {
    display: flex;
    flex-direction: column;
}

.dex-label {
    font-size: 6px;
    margin-bottom: 2px;
    color: var(--win-black);
    text-transform: uppercase;
}

.dex-value {
    /* Sunken Field Look */
    background-color: var(--win-white);
    color: var(--win-black);
    box-shadow: inset 1px 1px var(--win-black), 
                inset 2px 2px var(--win-gray-dark), 
                inset -1px -1px var(--win-white), 
                inset -2px -2px var(--win-gray-light);
    padding: 3px 4px;
    height: 14px; 
    line-height: 14px;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Courier New', Courier, monospace; /* Monospace for numbers aligns better */
    font-weight: bold;
}

/* Color coding for changes */
.dex-green { color: #008000 !important; }
.dex-red { color: #FF0000 !important; }

/* The Action Bar */
.dex-action-bar {
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.dex-btn {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    padding: 6px 12px;
    background-color: var(--win-gray);
    /* Authentic 3D Button */
    box-shadow: inset 1px 1px var(--win-white), 
                inset -1px -1px var(--win-black), 
                inset -2px -2px var(--win-gray-dark);
    border: none;
    cursor: url('/052dd0c023d9db3d5244875791c71c54-cursor-de-seta.png'), pointer;
    display: flex;
    align-items: center;
}

.dex-btn:active {
    box-shadow: inset 1px 1px var(--win-black), 
                inset 2px 2px var(--win-gray-dark), 
                inset -1px -1px var(--win-white);
    padding: 7px 11px 5px 13px; /* Shift text */
}

.dex-btn img {
    width: 12px;
    height: 12px;
    margin-right: 6px;
}

/* The Chart Container */
.dex-chart-container {
    flex-grow: 1;
    margin: 4px;
    /* Sunken Container */
    border: none;
    box-shadow: inset 1px 1px var(--win-black), 
                inset 2px 2px var(--win-gray-dark), 
                inset -1px -1px var(--win-white), 
                inset -2px -2px var(--win-gray-light);
    background-color: #000; 
    position: relative;
    display: none; /* Hidden by default! */
}

.dex-chart-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Loading Screen */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 30000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Press Start 2P', cursive;
    cursor: wait;
}

#loadingScreen img {
    width: 128px;
    height: auto;
    margin-bottom: 20px;
    image-rendering: pixelated; 
}

#loadingMessage {
    font-size: 12px;
}

.hidden {
    display: none !important;
}

/* DOS Prompt Styles */
.dos-output {
    flex-grow: 1;
    overflow-y: auto;
    white-space: pre-wrap; 
    word-break: break-all; 
    line-height: 1.3;
    padding-bottom: 5px; 
}

.dos-input-line {
    display: flex;
    align-items: baseline; 
    flex-shrink: 0; 
    padding-top: 2px; 
}

.dos-prompt {
    margin-right: 4px; 
    white-space: nowrap;
}

.dos-current-command {
    white-space: pre; 
    outline: none; 
}

.dos-cursor {
    background-color: white;
    display: inline-block;
    width: 7px; 
    height: 12px; 
    margin-left: 1px;
    vertical-align: baseline; 
    opacity: 1; 
    visibility: hidden; 
}

.dos-cursor.blink {
    animation: blink-animation 1s steps(2, start) infinite;
}

.dos-hidden-input {
    position: absolute;
    left: -9999px;
    top: -9999px; 
    width: 1px;
    height: 1px;
    opacity: 0;
    border: none;
    padding: 0;
    margin: 0;
    resize: none;
    overflow: hidden; 
    white-space: pre; 
}

/* Styles for when DOS window is fullscreen */
.window.fullscreen-dos {
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    border: none !important;
    box-shadow: none !important;
    z-index: 2147483647 !important; 
    padding: 0;
}

.window.fullscreen-dos .title-bar {
    display: none !important;
}

.window.fullscreen-dos .window-body {
    border: none !important;
    padding: 5px !important; 
    height: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    margin: 0;
}

/* Styles for when a window is maximized (within desktop bounds) */
.window.maximized {
    border-radius: 0 !important; 
    box-shadow: none !important; 
    padding: 0;
}

.window.maximized .title-bar {
    cursor: default !important; 
}

.window.maximized .window-body {
    height: 100%; 
    width: 100%;
    box-sizing: border-box; 
    margin: 0;
    /* Maintain border in maximized? Real Win95 removed outer border, kept inner */
    border-left: 1px solid white;
    border-top: 1px solid white;
}

/* BSOD Styles */
#bsodScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0000AA; 
    color: white;
    font-family: 'Lucida Console', 'Consolas', 'Courier New', monospace; 
    font-size: 12px; 
    padding: 20px;
    box-sizing: border-box;
    z-index: 999999; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center; 
    text-align: left; 
    overflow: auto; 
    cursor: default !important; 
    user-select: none; 
    -webkit-user-select: none;
}

#bsodScreen div, #bsodScreen p {
    max-width: 600px; 
    width: 100%;
}

#bsodScreen .bsod-header {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    text-align: center;
    background-color: var(--win-gray); 
    color: #0000AA; 
    padding: 2px 8px;
    margin-bottom: 20px;
    display: inline-block; 
}

#bsodScreen p {
    margin: 8px 0;
    line-height: 1.4;
    white-space: pre-wrap; 
}

#bsodScreen .bsod-technical-info {
    margin-top: 15px;
}

#bsodScreen .bsod-footer {
    margin-top: 25px;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
}

#bsodScreen .blink {
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

/* Glitch Screen Styles */
#glitchScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #111; 
    color: #00FF00; 
    font-family: 'Courier New', Courier, monospace; 
    font-size: 14px;
    padding: 20px;
    box-sizing: border-box;
    z-index: 999999; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    text-align: center;
    overflow: hidden; 
    cursor: default !important;
    user-select: none;
    -webkit-user-select: none;
    animation: glitch-screen-flicker 0.1s infinite alternate;
}

@keyframes glitch-screen-flicker {
    0% { opacity: 0.95; }
    100% { opacity: 1; }
}

#glitchScreen .glitch-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    width: 100%;
}

#glitchScreen .glitch-image-main {
    width: 100px; 
    height: auto;
    margin: 15px 0;
    filter: hue-rotate(90deg) contrast(1.5); 
    animation: image-glitch-jump 0.3s infinite steps(1, end);
}

@keyframes image-glitch-jump {
    0%, 100% { transform: translate(0,0); }
    25% { transform: translate(3px, -2px) skewX(-5deg); }
    50% { transform: translate(-2px, 3px) skewX(3deg); }
    75% { transform: translate(1px, -1px) skewX(-2deg); }
}

#glitchScreen p {
    margin: 10px 0;
    line-height: 1.6;
    text-shadow: 0 0 3px #00FF00, 0 0 5px #00FF00; 
    animation: text-flicker 1.5s infinite alternate;
}

@keyframes text-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 2px #00cc00,
            0 0 4px #00cc00,
            0 0 1px #fff,
            2px 2px 2px rgba(206,89,55,0), 
            -2px -2px 2px rgba(89,206,55,0); 
        opacity: 1;
    }
    20%, 24%, 55% {        
        text-shadow: none;
        opacity: 0.7;
    }
}


#glitchScreen .glitch-header {
    font-family: 'Press Start 2P', cursive;
    font-size: 18px;
    color: #FF0000; 
    text-shadow: 0 0 5px #FF0000, 0 0 10px #FF0000;
    margin-bottom: 20px;
}

#glitchScreen .glitch-footer {
    margin-top: 25px;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #FFFF00; 
    text-shadow: 0 0 3px #FFFF00;
}

#glitchScreen .blink {
    animation: blink-animation 0.8s steps(2, start) infinite; 
}


/* Mobile adjustments for Glitch Screen */
@media (max-width: 600px) {
    #glitchScreen {
        font-size: 10px;
        padding: 10px;
    }
    #glitchScreen .glitch-image-main {
        width: 80px;
    }
    #glitchScreen .glitch-header {
        font-size: 14px;
    }
    #glitchScreen .glitch-footer {
        font-size: 10px;
    }
}


/* Mobile specific adjustments */
@media (max-width: 600px) {
    body, #startButton, #startMenu li, .title-bar .title, .window-body, .window-body textarea, #clock {
        font-size: 10px; 
    }
    .desktop-icon {
        width: 80px;
        height: 80px;
    }
    .desktop-icon .icon-text {
        font-size: 9px;
    }
    .desktop-icon img {
        width: 40px;
        height: 40px;
    }
    #startButton img {
        width: 20px;
        height: 20px;
    }
     .title-bar {
        height: 22px;
    }
    .window-icon {
        width: 16px;
        height: 16px;
    }
    .title-bar-buttons button {
        width: 18px;
        height: 16px;
        font-size: 10px;
        line-height: 14px;
    }

    .start-menu-header-text {
        font-size: 18px;
    }
    #startMenu li img.start-menu-icon {
        width: 24px;
        height: 24px;
    }

    /* BSOD Mobile Adjustments */
    #bsodScreen {
        font-size: 9px; 
        padding: 10px;
    }
    #bsodScreen .bsod-header {
        font-size: 10px;
        margin-bottom: 15px;
    }
    #bsodScreen p {
        margin: 6px 0;
    }
    #bsodScreen .bsod-footer {
        font-size: 9px;
        margin-top: 20px;
    }
    #shutdownProcessScreen {
        font-size: 10px;
    }
    #shutdownProcessScreen img {
        width: 96px;
    }
    #shutdownProcessScreen p {
        font-size: 8px;
    }
    #safeToTurnOffScreen {
        font-size: 12px;
    }
}

/* Shutdown Screen Styles */
.shutdown-screen-base {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999998; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    cursor: default !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#shutdownProcessScreen {
    background-color: var(--win-teal);
    color: white;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
}

#shutdownProcessScreen img {
    width: 128px; 
    height: auto;
    margin-bottom: 20px;
}

#shutdownProcessScreen p {
    font-size: 10px; 
    line-height: 1.5;
}

#safeToTurnOffScreen {
    background-color: #000000; 
    color: var(--win-gray); 
    font-family: 'Lucida Console', 'Consolas', 'Courier New', monospace; 
    font-size: 16px; 
}

#safeToTurnOffScreen p {
    padding: 10px; 
}

@media (max-width: 600px) {
    #shutdownProcessScreen {
        font-size: 10px;
    }
    #shutdownProcessScreen img {
        width: 96px;
    }
    #shutdownProcessScreen p {
        font-size: 8px;
    }
    #safeToTurnOffScreen {
        font-size: 12px;
    }
}

/* --- CONTRACT ADDRESS APP STYLES --- */
.ca-container {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: var(--win-gray);
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.ca-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    margin-bottom: 8px;
    align-self: flex-start; /* Align text to left */
    width: 100%;
    color: var(--win-black);
}

.ca-input {
    width: 100%;
    margin-bottom: 15px;
    /* Sunken Input Look */
    background-color: var(--win-white);
    color: var(--win-black);
    box-shadow: inset 1px 1px var(--win-black), 
                inset 2px 2px var(--win-gray-dark), 
                inset -1px -1px var(--win-white), 
                inset -2px -2px var(--win-gray-light);
    border: none;
    padding: 8px;
    font-family: 'Courier New', Courier, monospace; /* Monospace for code/addresses */
    font-size: 11px;
    outline: none;
    box-sizing: border-box;
}

.ca-btn {
    min-width: 120px;
    padding: 8px 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    background-color: var(--win-gray);
    /* Authentic 3D Button */
    box-shadow: inset 1px 1px var(--win-white), 
                inset -1px -1px var(--win-black), 
                inset -2px -2px var(--win-gray-dark);
    border: none;
    cursor: url('/052dd0c023d9db3d5244875791c71c54-cursor-de-seta.png'), pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Pressed Effect */
.ca-btn:active {
    box-shadow: inset 1px 1px var(--win-black), 
                inset 2px 2px var(--win-gray-dark), 
                inset -1px -1px var(--win-white);
    padding: 9px 9px 7px 11px; /* Shift text down-right */
}

.ca-btn img {
    width: 12px;
    height: 12px;
    margin-right: 6px;
}