    body {
        font-family: Arial, sans-serif;
        background-color: #f0f8ff;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

.circle {
    display: inline-block !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background-color: yellow !important; /* or any color you choose */
    text-align: center !important;
    line-height: 30px !important; /* vertically center the text */
    margin: 2px !important; /* spacing between circles */
    font-weight: bold !important;
}

    h1, h2, h3, label, details, div, p  {
        color: #4169e1;
        text-align: center;
    }
    #numberSelector, #gameGenerator, #statistics, #costCalculator, #winningNumbers, #resultSection {
         /* background-color: white;*/
        border-radius: 10px;
        padding: 5%;
	padding-top:0;
        margin: 20px 0;

        width: 90%;
        max-width: 600px;
    }
   #printSection {
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        margin: 20px 0;
        width: 90%;
        max-width: 600px;
	display: contents;
    }

    button, input[type="number"] {
        background-color: #4169e1;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        margin-top: 10px;
    }
    input[type="number"] {
        background-color: white;
        color: #4169e1;
        border: 1px solid #4169e1;
        width: 50px;
    }
    button:hover {
        background-color: #1e90ff;
    }
    #allNumbers, #selectedNumbers, #generatedGames, #winningNumberSelector, #supplementaryNumberSelector {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }
    .number {
       background-color: #87ceeb;
        color: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        cursor: pointer;
        transition: transform 0.2s;

    }
.number {
    /* ... existing styles */
    background-image: url('../images/LottoBall.png'); /* Replace with the actual image path */
    background-size: contain;
    border-radius: 50%;
   border: 2px solid #555;
    background-position: center;
    text-align: center;
    line-height: 40px; /* Adjust height based on image size */
}

    .number:hover {
        transform: scale(1.1);
    }
    .number.selected {
       background-color: #4169e1;
      background-image: url('../images/Selected.png');
    }
    .number.winning {
        background-color: #32cd32;
       background-image: url('../images/Winner.png');
      border: 2px solid red;
    }
    .number.supplementary {
        background-color: #ffa500;
        background-image: url('../images/Supplementary.png');
	border: 2px solid yellow;
    }
    .game {

        flex-direction: column;
        width: auto;
        height: auto;
        border-radius: 10px;
        padding: 10px;
        margin-bottom: 10px;
	 background-image: url('../images/frosted-glass.jpg'); /* Replace with the actual path to your parchment image */
 	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    }
    #error {
        color: red;
        margin-top: 10px;
    }
    #statistics, #costCalculator {
        text-align: center;
    }
    .matchedGame {
        background-color: #90ee90;
    }
    #printGames {
        display: none;
    }

/* ... (existing CSS) */

@media only screen and (max-width: 600px) {
    /* Adjust styles for smaller screens */
    body {
        padding: 10px;
    }
    #numberSelector, #gameGenerator, #statistics, #costCalculator, #winningNumbers, #resultSection {
        width: 95%;
    }

    /* Add more specific adjustments as needed */
}

      .tooltip {
        position: relative;
        display: inline-block;
      }

      .tooltip .tooltiptext {
        visibility: hidden;
        width: 200px;
        background-color: orange;
        color: white;
        text-align: center;
        border-radius: 5px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 125%; /* Position above the button */
        left: 50%;
        margin-left: -60px;
        opacity: 0;
        transition: opacity 0.3s;
	font-size: 12px;
	bottom: -40px; /* Position below */ 
      }

      .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
      }
    summary {
      cursor: pointer;
      font-size: 1em; /* Adjust the size as needed */
    }
    details[open] summary {
      color: blue;
     font-size: 1em;
    }
        /* Youtube pop up*/  
.popup {  
            display: none;  
            position: fixed;  
            left: 50%;  
            top: 50%;  
            transform: translate(-50%, -50%);  
            width: 80%;  
            max-width: 600px;  
            height: 400px;  
            background: white;  
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);  
            z-index: 1000;  
        }  
        .overlay {  
            display: none;  
            position: fixed;  
            left: 0;  
            top: 0;  
            width: 100%;  
            height: 100%;  
            background: rgba(0, 0, 0, 0.7);  
            z-index: 999;  
        }  

 /* On Mouse hover*/  

.mousehover {  
	font-weight: normal;
	color: #4169e1;  
}  
.mousehover:hover {  
	font-weight: bold;  
	color: red;
}  

 /* Add image next to Header */  
       .header {  
            display: flex;  
            align-items: left;  
        }  
        .header img {  
            margin-left: auto; /* Pushes the image to the right */  
        }

 /* On Image hover*/ 

.img-hover-zoom {  
    transition: transform 0.5s; /* smooth transition */  
}  

.img-hover-zoom:hover {  
    transform: scale(2); /* zoom to double the size */  
} 


 /* Toggle open / close*/ 

  .content {  
    display: none;  
  } 

  input[type=checkbox]:checked + label + .content {  
    display: block;  
  } 

.highlighted-number {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border: 2px solid #ff0000; /* Red border */
  border-radius: 50%;
  text-align: center;
  margin: 2px;
  font-weight: bold;
  color: #ff0000; /* Red text color */
}

 /* Help Pop Up*/ 
        .help-screen {
            display: none;
            position: absolute;
            width: 200px;
            padding: 10px;
            background-color: #f9f9f9;
            border: 1px solid #ccc;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }

/* Form Group */

        .form-group {
            display: flex;
            align-items: center;
        }
        .form-group label {
            margin-right: 10px;
        }
/* Form Group */
.shadowed-image {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
