/* --- Global Reset & Base Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --primary-color: #34495e;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --background-start: #f4f7f6;
    --background-end: #e8f0f3;
    --surface-color: #ffffff;
    --text-color: #2c3e50;
    --text-light-color: #576c7f;
    --text-on-primary: #ffffff;
    --border-color: #dce4e8;
    --dice-bg: #fdfdfd;
    --dice-dot-color: var(--text-color);
    --special-message-bg: #fff3cd;
    --special-message-border: #ffeeba;
    --special-message-text: #856404;
    --shadow-color: rgba(44, 62, 80, 0.1);
    --shadow-strong-color: rgba(44, 62, 80, 0.15);

    /* Responsive Sizing Base */
    --base-font-size-vh: 2vh; 
    --base-spacing-unit: 1.5vmin; 
    --border-radius-unit: 1.2vmin;

    /* Dice dimensions */
    --dice-container-total-width: 88vw; /* Dice + gap should be about this wide */
    --dice-container-gap: 8vw; /* Increased gap between dice */
    --actual-dice-size: calc((var(--dice-container-total-width) - var(--dice-container-gap)) / 2);
    --dice-max-size: 160px; /* Cap for very large screens */
    --final-dice-size: min(var(--actual-dice-size), var(--dice-max-size));
    
    --dot-size: calc(var(--final-dice-size) * 0.18);
    --dice-padding: calc(var(--final-dice-size) * 0.08);
    --dice-gap: calc(var(--final-dice-size) * 0.05);
    --dice-radius: calc(var(--final-dice-size) * 0.15);

    /* Header */
    --header-height: 8vh;
    --header-padding-h: 4vw;
    --logo-height: calc(var(--header-height) * 0.5);
    --header-title-size: clamp(2.5vh, 4vw, 3.5vh);

    /* Container */
    --container-padding-v: calc(var(--base-spacing-unit) * 1.2); /* Reduced vertical for more content space */
    --container-padding-h: calc(var(--base-spacing-unit) * 1.5);
    --container-max-width: 95vw; 
    --container-max-width-px: 600px; 

    /* Action Buttons */
    --action-button-height: 7vh;
    --action-button-font-size: clamp(1.8vh, 2.8vw, 2.4vh);
}

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

html {
    font-size: var(--base-font-size-vh); 
    height: 100%;
    width: 100%;
    overflow: hidden; 
}

body {
   font-family: 'Poppins', sans-serif;
   background-image: linear-gradient(to bottom, var(--background-start), var(--background-end));
   color: var(--text-color);
   width: 100vw;
   height: 100vh; 
   display: flex;
   flex-direction: column;
   overflow: hidden; 
   line-height: 1.6;
   -webkit-tap-highlight-color: transparent; 
}

.invisible { display: none !important; }

/* --- Typography --- */
h1, h2, h3, h4 {
   color: var(--primary-color);
   font-weight: 700;
   line-height: 1.3;
   margin-bottom: calc(var(--base-spacing-unit) * 0.75);
}
h1 { font-size: var(--header-title-size); }
h2 { font-size: clamp(2.2vh, 3.5vw, 3vh); margin-top: var(--base-spacing-unit); }
h3 { font-size: clamp(1.8vh, 3vw, 2.5vh); }
h4 { font-size: clamp(1.6vh, 2.8vw, 2.2vh); color: var(--text-light-color); font-weight: 600;}

p { margin-bottom: var(--base-spacing-unit); font-size: clamp(1.5vh, 2.2vw, 1.8vh); }
.subtle-text { color: var(--text-light-color); font-size: clamp(1.3vh, 2vw, 1.6vh); }

/* --- Layout --- */
.site-header {
    height: var(--header-height);
    min-height: 50px; 
    padding: 0 var(--header-padding-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
    background-color: var(--surface-color);
    box-shadow: 0 2px 4px var(--shadow-color);
    position: relative; 
    z-index: 10;
}
.title-container {
   display: flex;
   align-items: center;
   gap: calc(var(--base-spacing-unit) * 0.8);
   position: absolute; 
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   white-space: nowrap; 
}
.penguin-logo {
   height: var(--logo-height);
   width: auto;
}
.header-action-placeholder { 
    width: calc(var(--logo-height) * 1.2); 
    visibility: hidden;
}

.site-main {
    flex-grow: 1; 
    width: 100%;
    display: flex; 
    flex-direction: column;
    overflow: hidden; 
}

.view-container {
   flex-grow: 1; 
   display: flex;
   flex-direction: column;
   /* Scroll handled by .game-content-area now */
   padding: var(--container-padding-v) var(--container-padding-h);
   width: 100%;
   max-width: min(var(--container-max-width), var(--container-max-width-px));
   margin-left: auto;
   margin-right: auto;
   gap: calc(var(--base-spacing-unit) * 1); /* Reduced gap for more content focus */
}

#spel-fase { display: none; padding-bottom: 0; /* Remove bottom padding to allow buttons wrapper to stick */ }

/* Specific to Spel Fase for button sticking */
#spel-fase {
    position: relative; /* For absolute positioning of button wrapper if needed, but flex is better */
    display: none; /* Will be flex */
    flex-direction: column;
    justify-content: space-between; /* Pushes game content up, button wrapper down */
    overflow-y: auto;
}

.game-content-area {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-grow: 1; /* Takes up available space above buttons */
    padding-bottom: var(--base-spacing-unit); /* Space before buttons start */
    display: flex;
    flex-direction: column;
    gap: calc(var(--base-spacing-unit) * 1);
}


/* --- Buttons --- */
button, input[type="button"], input[type="submit"] {
   background-color: var(--secondary-color);
   color: var(--text-on-primary);
   border: none;
   padding: calc(var(--base-spacing-unit) * 0.9) calc(var(--base-spacing-unit) * 1.8);
   border-radius: var(--border-radius-unit);
   cursor: pointer;
   font-size: clamp(1.6vh, 2.3vw, 2vh);
   font-weight: 600;
   font-family: 'Poppins', sans-serif;
   transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
   box-shadow: 0 0.2vmin 0.5vmin rgba(0,0,0,0.1);
   text-transform: uppercase;
   letter-spacing: 0.05em;
}
button:hover:not(:disabled) {
   background-color: #2980b9;
   transform: translateY(-0.1vmin);
   box-shadow: 0 0.4vmin 0.8vmin rgba(0,0,0,0.15);
}
button:active:not(:disabled) {
   transform: translateY(0);
   box-shadow: 0 0.2vmin 0.4vmin rgba(0,0,0,0.1);
}
button:disabled {
   background-color: #bdc3c7;
   cursor: not-allowed;
   opacity: 0.7;
   box-shadow: none;
   transform: translateY(0);
}
.button-danger { background-color: var(--accent-color); }
.button-danger:hover:not(:disabled) { background-color: #c0392b; }

#fullscreen-button {
    width: calc(var(--logo-height) * 1.2);
    height: calc(var(--logo-height) * 1.2);
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}
#fullscreen-button img { width: 100%; height: 100%; object-fit: contain; }
#fullscreen-button:hover { transform: scale(1.1); background: transparent; }

.settings-button {
    width: calc(var(--logo-height) * 1.1); 
    height: calc(var(--logo-height) * 1.1);
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}
.settings-button img { width: 100%; height: 100%; object-fit: contain; }
.settings-button:hover { transform: scale(1.1); background: transparent; }


/* --- Forms & Inputs --- */
.input-group {
    display: flex;
    gap: calc(var(--base-spacing-unit) * 0.8);
    width: 100%;
}
.input-group input[type="text"] { flex-grow: 1; min-width: 0; }
.input-group button { flex-shrink: 0; }

input[type="text"] {
   padding: calc(var(--base-spacing-unit)*0.9) var(--base-spacing-unit);
   border: 1px solid var(--border-color);
   border-radius: var(--border-radius-unit);
   font-size: clamp(2vh, 2.3vw, 2vh);
   font-family: 'Poppins', sans-serif;
   width: 100%;
}
input[type="text"]:focus {
   border-color: var(--secondary-color);
   box-shadow: 0 0 0 0.3vmin rgba(52, 152, 219, 0.25);
   outline: none;
}

#player-list, #settings-player-list {
   list-style: none;
   padding: 0;
   width: 100%;
}
#player-list li, #settings-player-list li {
   background-color: var(--background-start);
   padding: calc(var(--base-spacing-unit)*1) var(--base-spacing-unit);
   margin-bottom: calc(var(--base-spacing-unit)*1);
   border-radius: calc(var(--border-radius-unit) * 1);
   font-weight: 600;
   font-size: clamp(2vh, 2.2vw, 1.8vh);
   border: 1px solid var(--border-color);
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: grab;
}
.remove-player-button {
    width: 2.5vmin; min-width: 18px; max-width: 22px;
    height: 2.5vmin; min-height: 18px; max-height: 22px;
    cursor: pointer; opacity: 0.7;
    margin-right: 1vw;
}
.remove-player-button:hover { opacity: 1; }

/* --- Game Specific Styles --- */
.game-header-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
}

.game-header-controls h2 { 
    margin-bottom: 0;
    font-size: clamp(4vh, 0vh, 0vh); 
}

#spel-info-wrapper { 
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: calc(var(--base-spacing-unit) * 0.5);
   padding: calc(var(--base-spacing-unit) * 0.8) 0;
   border-bottom: 1px solid var(--border-color);
   margin-bottom: calc(var(--base-spacing-unit) * 1); /* Reduced margin */
   flex-shrink: 0;
}
#speler-aan-zet { font-weight: 700; color: var(--secondary-color); margin-bottom: 0; font-size: clamp(3vh, 3vw, 3vh); }
#worp-info { font-weight: 700; color: var(--text-light-color); margin-bottom: 0; font-size: clamp(3vh, 3vw, 3.5vh); }

/* Dice Styling */
.dice-container {
   display: flex;
   justify-content: center;
   gap: var(--dice-container-gap);
   margin-bottom: calc(var(--base-spacing-unit) * 1.2); /* Reduced margin */
   perspective: 100vmin; 
   min-height: calc(var(--final-dice-size) + 2vmin); 
   width: 100%;
   flex-shrink: 0; 
}
.die {
   width: var(--final-dice-size); height: var(--final-dice-size);
   background: linear-gradient(145deg, #ffffff, #e8e8e8);
   border: 1px solid rgba(0,0,0,0.05);
   border-radius: var(--dice-radius);
   padding: var(--dice-padding);
   display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
   gap: var(--dice-gap);
   box-shadow: 0.5vmin 0.5vmin 1.5vmin var(--shadow-color),
              -0.5vmin -0.5vmin 1.5vmin rgba(255,255,255,0.7);
   cursor: default;
   transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease-out;
   transform-style: preserve-3d;
}
.die.clickable { cursor: pointer; }
.die.clickable:not(.held):hover {
   transform: scale(1.05) rotateY(5deg);
}
.die.held {
   border-color: var(--accent-color);
   box-shadow: 0 0 1.5vmin var(--accent-color),
              0.5vmin 0.5vmin 1.5vmin var(--shadow-color);
   transform: scale(1.02);
}
.dot {
   width: var(--dot-size); height: var(--dot-size);
   background-color: var(--dice-dot-color);
   border-radius: 50%;
   align-self: center; justify-self: center;
   box-shadow: inset 0.1vmin 0.1vmin 0.3vmin rgba(0,0,0,0.5);
   visibility: hidden;
}
/* Dot visibility rules (same as original) */
.dot:nth-child(1) { grid-area: 1 / 1; } .dot:nth-child(2) { grid-area: 1 / 2; } .dot:nth-child(3) { grid-area: 1 / 3; }
.dot:nth-child(4) { grid-area: 2 / 1; } .dot:nth-child(5) { grid-area: 2 / 2; } .dot:nth-child(6) { grid-area: 2 / 3; }
.dot:nth-child(7) { grid-area: 3 / 1; } .dot:nth-child(8) { grid-area: 3 / 2; } .dot:nth-child(9) { grid-area: 3 / 3; }
.die[data-value="0"] .dot { visibility: hidden; }
.die[data-value="1"] .dot:nth-child(5) { visibility: visible; }
.die[data-value="2"] .dot:nth-child(1), .die[data-value="2"] .dot:nth-child(9) { visibility: visible; }
.die[data-value="3"] .dot:nth-child(1), .die[data-value="3"] .dot:nth-child(5), .die[data-value="3"] .dot:nth-child(9) { visibility: visible; }
.die[data-value="4"] .dot:nth-child(1), .die[data-value="4"] .dot:nth-child(3), .die[data-value="4"] .dot:nth-child(7), .die[data-value="4"] .dot:nth-child(9) { visibility: visible; }
.die[data-value="5"] .dot:nth-child(1), .die[data-value="5"] .dot:nth-child(3), .die[data-value="5"] .dot:nth-child(5), .die[data-value="5"] .dot:nth-child(7), .die[data-value="5"] .dot:nth-child(9) { visibility: visible; }
.die[data-value="6"] .dot:nth-child(1), .die[data-value="6"] .dot:nth-child(3), .die[data-value="6"] .dot:nth-child(4), .die[data-value="6"] .dot:nth-child(6), .die[data-value="6"] .dot:nth-child(7), .die[data-value="6"] .dot:nth-child(9) { visibility: visible; }

.score-display {
   font-size: clamp(4vh, 4vw, 3vh); font-weight: 700; color: var(--secondary-color);
   text-align: center; margin-bottom: calc(var(--base-spacing-unit) * 2); /* Increased space to message */
   flex-shrink: 0;
}

#message-wrapper {
    min-height: calc(1.6em + (var(--base-spacing-unit) * 0.6 * 2)); 
    width: 100%;
    margin-bottom: var(--base-spacing-unit);
    flex-shrink: 0;
}
.message-area {
   padding: calc(var(--base-spacing-unit)*0.6) var(--base-spacing-unit);
   background-color: var(--special-message-bg);
   border: 1px solid var(--special-message-border);
   border-radius: var(--border-radius-unit); text-align: center;
   font-weight: 600; color: var(--special-message-text);
   font-size: clamp(3vh, 2.2vw, 1.8vh);
   visibility: hidden; opacity: 0;
   transition: opacity 0.3s ease, visibility 0.3s ease;
   box-shadow: 0 0.2vmin 0.4vmin var(--shadow-color);
   width: 100%;
}
.message-area.visible { visibility: visible; opacity: 1; }
.message-area.special {
   color: var(--accent-color);
   background-color: #f8d7da; border-color: #f5c6cb;
}

/* Action buttons stuck to bottom */
#actie-knoppen-wrapper {
    width: 100%; /* Take full width of its container (.view-container #spel-fase) */
    padding: var(--container-padding-v) 0 0; /* Padding from game content, no bottom padding inside wrapper */
    background-color: transparent; /* Match view-container or body background if needed */
    flex-shrink: 0; /* Prevent this wrapper from shrinking */
    margin-top: auto; /* Pushes to the bottom if parent is flex column */
    margin-bottom: 20vh
}
#actie-knoppen {
    display: flex;
    gap: var(--base-spacing-unit);
    justify-content: center;
    width: 100%;
}
#actie-knoppen button {
    flex-grow: 1;
    min-width: 38vw; /* Larger buttons */
    max-width: 220px;
    height: var(--action-button-height);
    min-height: 50px; /* Ensure tap target */
    font-size: var(--action-button-font-size);
    display: flex; /* For centering text if needed */
    align-items: center;
    justify-content: center;
}

/* Round Results */
#ronde-resultaten {
   display: none; 
   margin-top: var(--base-spacing-unit);
   padding: var(--base-spacing-unit);
   background-color: var(--primary-color);
   color: var(--text-on-primary);
   border-radius: var(--border-radius-unit);
   width: 100%;
   display: flex;
   overflow-y: auto;
   flex-direction: column;
   gap: var(--base-spacing-unit);
}
#ronde-resultaten #next-round-btn {
    order: -3; /* Ensures it's at the very top */
    width: 100%;
    background-color: var(--secondary-color);
    font-size: var(--action-button-font-size); /* Match other main action buttons */
    height: var(--action-button-height);
    min-height: 50px;
}
#ronde-resultaten h3 {
    order: -2;
    color: var(--text-on-primary); text-align: center;
    margin-bottom: 0; /* Gap handles spacing */
}
.results-primary-announcements {
    order: -1;
    text-align: center;
}
#lowest-score-announcement, #longest-turn-announcement {
   font-size: clamp(3vh, 3vw, 2.5vh);
   font-weight: 700;
   color: var(--accent-color);
   padding: calc(var(--base-spacing-unit)*0.5) 0;
   min-height: 1.5em; 
}
.results-divider {
    border: none; border-top: 1px solid rgba(255,255,255,0.15);
    margin: 0; /* Gap handles spacing */
    width: 85vw;
    align-self: center;
}
.results-divider-minor {
    border: none; border-top: 1px solid rgba(255,255,255,0.1);
    margin: 0;
    width: 85vw;
    align-self: center;
}

.results-details-section {
    background-color: rgba(0,0,0,0.1);
    border-radius: calc(var(--border-radius-unit) * 0.5);
    padding: calc(var(--base-spacing-unit) * 0.8);
}


.results-details-section summary {
    font-weight: 600;
    font-size: clamp(1.7vh, 2.5vw, 2.2vh);
    cursor: pointer;
    color: #e0e0e0;
    padding-bottom: calc(var(--base-spacing-unit) * 0.5);
    list-style-position: inside; /* Or use a custom marker */
}
.results-details-section summary::marker {
    color: #aed6f1; /* Light blue for marker */
}
.results-details-section[open] summary {
    margin-bottom: calc(var(--base-spacing-unit) * 0.5);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.results-details-section div { /* Content of details */
    padding-top: calc(var(--base-spacing-unit) * 0.5);
}

#resultaten-acties p, .score-item { 
    font-size: clamp(1.4vh, 2.1vw, 1.7vh);
    line-height: 1.7;
    color: #ecf0f1;
}
#resultaten-acties strong, .player-name-score strong { 
    color: #aed6f1;
}
#resultaten-acties em {
   display: block; text-align: center; margin-top: calc(var(--base-spacing-unit)*0.5);
   font-size: 0.9em; 
   color: #bdc3c7;
}

.score-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: calc(var(--base-spacing-unit)*0.25) calc(var(--base-spacing-unit)*0.5);
    margin-bottom: calc(var(--base-spacing-unit)*0.25);
}
.player-name-score {
    font-weight: 600;
    color: #aed6f1;
    margin-right: calc(var(--base-spacing-unit)*0.5);
}
.throw-history span {
   margin-right: calc(var(--base-spacing-unit)*0.5);
   display: inline-block;
   padding: 0.2vmin 0.5vmin;
   border-radius: 0.4vmin;
}
.throw-history .final-throw {
   font-weight: 700;
   color: var(--text-on-primary);
   background-color: rgba(255,255,255,0.15);
}
.throw-history .lowest-score-highlight {
   color: var(--accent-color) !important;
   background-color: rgba(231, 76, 60, 0.2) !important;
   font-weight: bold;
}
.throw-history .special-throw {
   font-style: italic;
   opacity: 0.8;
   background-color: rgba(255,255,255,0.05);
}


/* Settings Menu */
.settings-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: rgba(0,0,0,0.65); 
    display: flex; justify-content: center; align-items: center;
    z-index: 1000;
    visibility: hidden; opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: var(--base-spacing-unit);
}
.settings-menu-overlay.visible { visibility: visible; opacity: 1; }

.settings-menu-content {
    background-color: var(--surface-color);
    padding: calc(var(--base-spacing-unit)*2);
    border-radius: var(--border-radius-unit);
    box-shadow: 0 0.8vmin 3vmin var(--shadow-strong-color);
    width: 100%;
    max-width: min(90vw, 500px); 
    max-height: 85vh; 
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: calc(var(--base-spacing-unit) * 1.5); /* Increased gap between sections */
}
.settings-menu-content h2 { margin-bottom: 0; text-align: center; font-size: clamp(4vh, 3vw, 2.5vh)} /* Gap handles spacing */
.settings-section {
    padding-bottom: var(--base-spacing-unit);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: var(--base-spacing-unit); /* Increased gap within sections */
}
.settings-section:last-child { border-bottom: none}
.settings-section h3 { font-size: clamp(2.5vh, 3vw, 2.5vh); margin-bottom: 0; }

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(var(--base-spacing-unit) * 1.5); /* Increased gap for more space */
}
.setting-item .toggle-label {
    font-weight: 600;
    font-size: clamp(1.7vh, 2.2vw, 1.8vh);
    flex-shrink: 1; 
    text-align: left; /* Ensure label text aligns left */
}
.setting-item button {
    flex-grow: 0; /* Don't let reset button grow too much */
    min-width: 40%; /* Give it some base width */
    /* height: 0px; */
    font-size: 100%;
}


/* Toggle Switch */
.switch { position: relative; display: inline-flex; /* Use inline-flex for centering */ align-items: center; justify-content: center; width: 10vmin; min-width:50px; max-width: 60px; height: 5.6vmin; min-height:28px; max-height: 34px; flex-shrink: 0;}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc; transition: .4s;
}
.slider:before { /* The circle */
    position: absolute; content: "";
    height: 4.6vmin; min-height:20px; max-height:26px;
    width: 4.6vmin; min-width:20px; max-width:26px;
    /* Centering the circle */
    left: 1.2vmin; /* (Switch height - Circle height) / 2 roughly */
    top: 48%;
    transform: translateY(-50%);
    background-color: white; transition: .4s;
}
input:checked + .slider { background-color: var(--secondary-color); }
input:checked + .slider:before {
    /* (Switch width - Circle width - Left offset) */
    transform: translate(calc(10vmin - 4.6vmin - 0.5vmin - 0.5vmin), -50%); /* Adjusted translateX for centering */
}
.slider.round { border-radius: 5.6vmin; } /* Full radius for pill shape */
.slider.round:before { border-radius: 50%; }

#save-settings-button { 
    width: 100%; 
    margin-top: var(--base-spacing-unit); 
    font-size: 100%;
    height: 50px;
}

/* Shake Animation */
@keyframes shake {
   0% { transform: translate(0, 0) rotateX(0) rotateY(0); }
   10% { transform: translate(-0.4vmin, -0.2vmin) rotateX(-5deg) rotateY(4deg); }
   20% { transform: translate(0.4vmin, 0.2vmin) rotateX(4deg) rotateY(-5deg); }
   100% { transform: translate(0, 0) rotateX(0) rotateY(0); }
}
.die.shaking {
   animation: shake 0.35s cubic-bezier(.36,.07,.19,.97) both;
   transform: translateZ(1vmin);
}

/* Prevent text selection */
body, .die, button, summary {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
input[type="text"] { 
    user-select: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
}