/*recent posts added */
.recent-news-title 
{
margin-top:20px;
box-sizing: border-box;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
font-size: 25px;
text-align: center;
}

.recent-posts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1050px;
  margin-top:0px !important;
  margin: 40px auto;
  padding: 0 20px;
}

.post-square {
  width: 18%; /* ~20% with margin, allows 5 per row */
  aspect-ratio: 1 / 1; /* keeps squares */
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.post-square:hover {
  background-color: #eaeaea;
  transform: translateY(-4px);
}

.post-square a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  word-wrap: break-word;
}

@media (max-width: 1024px) {
  .post-square {
    width: 30%;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .post-square {
    width: 45%;
  }
}



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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem; /* Reduced from 3rem to 2.5rem */
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Feature section link styling */
.features-section a {
    color: #FFA500; /* Orange color to match the highlight-date */
    font-weight: 600;
}

.features-section a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Highlight Date Color */
.highlight-date {
    color: #FFA500; /* Orange color */
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Lotto Balls Styling */
.lotto-balls-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 30px;
    justify-content: flex-start;
}

.lotto-ball {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7b00, #ff5100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.lotto-ball::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50% 50% 0 0;
}

.lotto-ball.bonus-ball {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: #333;
    border: 2px solid #ff7b00;
}

/* Jackpot Info Styling */
.jackpot-info {
    margin-bottom: 30px;
}

.jackpot-info p {
    font-size: 1.3rem;
    font-weight: 600;
}

.jackpot-amount {
    font-weight: 700;
    color: #FFA500; /* Orange color to match the highlight-date */
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    margin-left: 20px;
    cursor: pointer;
}

.language-selected {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.1);
}

.arrow-icon {
    margin-left: 3px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    width: 150px;
    background-color: white;
    border-radius: 5px;
    margin-top: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    padding: 8px 15px;
    align-items: center;
    gap: 8px;
    color: #333;
    transition: background 0.2s;
}

.language-option:hover {
    background-color: #f5f5f5;
}

.language-option.active {
    background-color: #f0f0f0;
    font-weight: 600;
}

.flag-icon {
    width: 20px;
    height: 15px;
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 2px;
}

.flag-se {
    background-image: url('https://flagcdn.com/w20/se.png');
}

.flag-fi {
    background-image: url('https://flagcdn.com/w20/fi.png');
}

.flag-fr {
    background-image: url('https://flagcdn.com/w20/fr.png');
}

.flag-de {
    background-image: url('https://flagcdn.com/w20/de.png');
}

.flag-no {
    background-image: url('https://flagcdn.com/w20/no.png');
}

.flag-dk {
    background-image: url('https://flagcdn.com/w20/dk.png');
}

.flag-nl {
    background-image: url('https://flagcdn.com/w20/nl.png');
}

/* Table styles for probabilities */
.probability-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.probability-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.probability-table th,
.probability-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.probability-table th {
    background: linear-gradient(135deg, #ff7b00, #ff5100);
    color: white;
    font-weight: 600;
}

.probability-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.5);
}

.probability-table tr:hover {
    background-color: rgba(255, 165, 0, 0.1);
}

.probability-table td:first-child {
    font-weight: 600;
}

/* Stats Container Styling */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.stats-box {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stats-box h4 {
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.stats-table th,
.stats-table td {
    padding: 8px 10px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-table th {
    background: linear-gradient(135deg, #ff7b00, #ff5100);
    color: white;
    font-weight: 600;
}

.stats-table tr:hover {
    background-color: rgba(255, 165, 0, 0.1);
}

.reminder-text {
    margin-top: 20px;
    font-style: italic;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #ff7b00;
}

/* Header Styles */
.sticky-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.2); /* Slightly darker header background */
    padding: 20px 0;
}

.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem; /* Reduced from 1.5rem to 1.3rem */
    font-weight: 700;
    color: white;
}

/* Make logo clickable */
.logo a, .footer-logo a {
    color: white;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    font-weight: 500;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Container */
.mobile-nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    padding: 20px;
}

.mobile-nav-container.active {
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://wallpapers.com/images/hd/aesthetic-abstract-yg6w31l2sw6vv1ov.jpg');
    background-size: cover;
    background-position: top center;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darker overlay for hero section */
}

.hero-columns {
    display: flex;
    gap: 40px;
    padding: 0 10%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content:first-child {
    flex: 6; /* 60% for the left column */
    max-width: 60%;
}

.hero-content:last-child {
    flex: 4; /* 40% for the right column */
    max-width: 40%;
}

.hero-content h1 {
    font-size: 2.2rem; /* Even more specific size for the hero title */
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Recent draws list styling */
.recent-draws-list {
    margin-top: 15px;
}

.recent-draws-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-draws-list li:last-child {
    border-bottom: none;
}

/* Info Section */
.info-section {
    background-color: #f7f2f8; /* Slightly darker background */
    padding: 100px 0;
    position: relative;
}

/* Add special spacing for the Eurojackpotin Historia section */
#history {
    padding-top: 40px; /* Reduced from 100px to 40px */
}

/* Add special spacing for the Eurojackpot Voitonjako section */
#prize-distribution {
    padding-top: 40px; /* Reduced from 100px to 40px */
}

/* Add special spacing for the Yhteystiedot section */
.yhteystiedot-section {
    background-color: #f7f2f8;
    padding: 40px 0; /* Kept at 40px */
    position: relative;
    margin-top: -20px; /* Added negative margin to pull section closer to previous section */
}

/* Add special spacing for the Eurojackpotin Historia section */
#contact-duplicate {
    padding-top: 0px; /* Removed top padding completely from 40px to 0px */
}

/* Add special spacing for the Eurojackpot Voitonjako section */
#info-duplicate {
    padding-top: 20px; /* Reduced padding from 100px to 20px */
}

.pattern-dots {
    position: relative;
}

.pattern-dots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e6c0de 1px, transparent 2px); /* Darker dots */
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.info-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Draw Time Display */
.draw-time-display {
    margin: 15px 0;
    text-align: center;
    background: linear-gradient(135deg, #ff7b00, #ff5100);
    border-radius: 10px;
    padding: 8px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    width: 100%; /* Changed from max-width: 120px to width: 100% */
}

.draw-time-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 100%);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.draw-time {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: block;
}

/* Two column layout */
.two-column-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.two-column-layout .info-column {
    flex: 1;
    min-width: 300px;
    width: 50%;
    max-width: 50%;
    box-sizing: border-box;
}

/* First column with draw times */
.draw-times-column {
    flex: 1;
    width: 50%;
    max-width: 50%;
    box-sizing: border-box;
}

/* Second column with dates */
.two-column-layout .info-column:last-child {
    flex: 1;
    width: 50%;
    max-width: 50%;
    box-sizing: border-box;
}

/* Draw dates columns */
.draw-dates-columns {
    display: flex;
    gap: 20px;
}

.draw-dates-column {
    flex: 1;
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.draw-dates-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.draw-dates-list li:last-child {
    border-bottom: none;
}

/* Features Section */
.features-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://wallpapers.com/images/hd/aesthetic-abstract-yg6w31l2sw6vv1ov.jpg'); /* Darker overlay */
    background-size: cover;
    background-position: center center;
    color: white;
    padding: 100px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay for features section */
}

.features-section h2 {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08); /* Darker card background */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Darker border */
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    /* Removed transition property */
}

.feature-card:hover {
    /* Removed transform property that was causing movement */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Kept shadow for subtle hover effect */
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Contact Section - Updated to match Eurojackpot Arvonta styling */
.contact-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://wallpapers.com/images/hd/aesthetic-abstract-yg6w31l2sw6vv1ov.jpg');
    background-size: cover;
    background-position: center center;
    color: white;
    padding: 100px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.contact-section h2 {
    position: relative;
    z-index: 1;
    color: white;
}

.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-section .btn {
    background: linear-gradient(135deg, #ff7b00, #ff5100);
    color: white;
    border: none;
    cursor: pointer;
}

.contact-section .btn:hover {
    background: linear-gradient(135deg, #ff5100, #ff7b00);
    transform: translateY(-2px);
}

/* Footer Section */
.footer-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://wallpapers.com/images/hd/aesthetic-abstract-yg6w31l2sw6vv1ov.jpg');
    background-size: cover;
    background-position: bottom center;
    color: white;
    padding: 70px 0 20px;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-section {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-email {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: left; /* Changed from center to left */
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Yhteystiedot Section Styles */
.yhteystiedot-section {
    background-color: #f7f2f8;
    padding: 40px 0; /* Reduced padding from 80px to 40px */
    position: relative;
    margin-top: -40px; /* Added negative margin to pull section closer to previous section */
}

.yhteystiedot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e6c0de 1px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.yhteystiedot-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.yhteystiedot-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease; /* Removed transform from transition, kept only box-shadow */
    position: relative;
    overflow: hidden;
}

.yhteystiedot-card:hover {
    /* Removed transform: translateY(-5px); to prevent movement */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.yhteystiedot-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.yhteystiedot-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.yhteystiedot-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.yhteystiedot-card p:last-child {
    margin-bottom: 0;
}

.highlight-email {
    color: #ff7b00;
    font-weight: 600;
}

/* History image styling */
.history-image-container {
    text-align: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    max-width: 900px; /* Adjusted to match the max-width of the info-description */
}

.history-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile navigation dropdown fix */
.mobile-nav-container .language-dropdown.show {
    transform: translateX(-50%) translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 900px), (max-height: 600px) {
    h1 {
        font-size: 2rem; /* Reduced from 2.5rem to 2rem for mobile */
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .sticky-header {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 15px 0;
    }
    
    .logo {
        font-size: 1.1rem; /* Reduced from 1.3rem to 1.1rem for mobile */
    }
    
    /* Mobile Navigation */
    .hamburger-menu {
        display: flex;
    }
    
    nav > ul {
        display: none;
    }
    
    .language-switcher {
        display: none;
    }

    /* Hero Section Mobile Optimizations */
    .hero-section {
        padding-top: 80px; /* Reduced from the default to ensure content is below the top menu */
        height: auto; /* Allow height to adjust based on content */
        min-height: 100vh; /* Ensure it still takes full viewport height */
    }

    .hero-columns {
        flex-direction: column;
        gap: 30px;
        padding: 0 5%;
    }
    
    .hero-content:first-child,
    .hero-content:last-child {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-section .btn {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Mobile nav container continued */
    .mobile-nav-container ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .mobile-nav-container ul li a {
        color: white;
        font-size: 1.2rem;
        font-weight: 500;
        padding: 10px;
    }
    
    .mobile-nav-container .language-switcher {
        display: block;
        margin: 0;
    }
    
    .mobile-nav-container .language-dropdown {
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        width: 180px;
    }

    /* Additional mobile optimizations */
    .draw-times-column,
    .two-column-layout .info-column,
    .two-column-layout .info-column:last-child {
        width: 100%;
        max-width: 100%;
    }
    
    .draw-dates-columns {
        flex-direction: column;
    }
}
