
.blank-space{
padding: 30px;

}

html
{
   
   font-family: Arial;
}

h1{
    margin-top: 20px;
    color: white;   
}
header {
    width: 100%;
    padding: 0px;
    background-color: rgb(27, 74, 161); /* Semi-transparent background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    color: rgb(27, 74, 161);
     z-index: 10;
}

.logo {
   
    font-size: clamp(7px, 2vw, 20px);
    font-weight: bold;
    padding-left: 30px;
}


nav ul {
    list-style: none;
/*    margin: 20px;*/
    padding-right: 50px;
    display: flex;
    gap: 20px;
    color: rgb(253, 253, 253);
}



nav a {
    text-decoration: none;
    font-size: clamp(5px, 1.5vw, 20px);
    color: rgb(252, 252, 252);
    font-weight: bold;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(255, 255, 255);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    font-size: clamp(5px, 1.5vw, 20px);
}

.dropdown-content a {
    color: rgb(0, 0, 0);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #6e78d4;
    color: rgb(255, 255, 255);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #212fa8;
    border-radius: 4px;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-top: 20px; /* Adjusted for fixed header */
    width: 100%;
      /* Replace 'background.jpg' with your image path */
    
    background-position: center;
    box-sizing: border-box;
}


body {
/*    display: flex;*/
    justify-content: center;
    align-items: center;
    height: 100vh;
   /* background-image: url('nature cool.png'); */
    background-size: cover;
    background-position: center;
    margin: 0;
    font-family: Arial, sans-serif;
animation-duration: 20s;
background-color: #fdfdfd;
animation-iteration-count: infinite;
}
 



.timer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0); /* Semi-transparent background */

    border: 0px solid #ddd;
    border-radius: 0px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    padding: 0px;
    box-sizing: border-box;
}


#timer {
    font-size: clamp(50px, 20vw, 400px);
    color: #423c3c;
    font-family: clockicons, sans-serif;    
}

.buttons {
    margin-top: 10px;
}

button {
    margin: 12px;
    padding: 5px 10px;
    font-size: 15px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    background-color: #4aae71;
    color: rgb(255, 255, 255);
}
#editok-button{
    background-color: #fbad10;
}
#cancel-button{
    background-color: #EF6262;
}

#pause{
    background-color: #0090dd;
}
#reset{
    background-color: #EF6262;
}
#edit{
    background-color: #fbad10;
}

#mute{
    background-color: #0090dd;
}

button:disabled {
    background-color: #ffffff;
    cursor: not-allowed;
    display: none;
}


.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}


.editmodal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
    
    justify-content: center;
    align-items: center;
}

.editmodal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: center;
}

.editmodal-content label {
    margin: 10px 0;
    text-align: right;
    padding-right: 10px;
}

.editmodal-content input {
    margin-left: 5px;
}

.editmodal-content .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    grid-column: span 3;
  
}

.popup-buttons {
    grid-column: span 3;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.popup-button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
   
}

.popup-button:hover {
    background-color: #0056b3;
}


.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 300px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}



.modal-content p {
    margin: 0 0 20px 0;
}

.modal-content button {
    margin: 0 10px;
}


footer {
    width: 50%;
    background-color: rgb(27, 74, 161); /* Semi-transparent background */
    padding: 20px 0;
    margin: auto;
    border-radius: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links .column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}
   .footer {
    text-decoration: none;
     color: #fff;
    font-size: 20px;
}

@media (max-width: 768px) {
    .timer-container {
        width: 90%;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
   
}


.inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.inputs label {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inputs input {
    
    text-align: center;

    width: 100%;
  padding: 8px 15px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}


/* Timer Description Section */
.timer-description {
    /* width: fit-content; */
    text-align: left;
    margin: 20px 0;
    padding: 10px;
   padding-top: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    
    margin-left: auto;
    margin-right: auto;
}

/* Social Media Icons Section */
.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    background: #fff;
}

.social-icon img {
    width: 20px;
    height: 20px;
    padding: 3px;
}

.social-icon img:hover {
    opacity: 0.7;
}

/* Fullscreen styles */
#timer-section.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 8999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
#timer.fullscreen {
    font-size: clamp(50px, 22vw, 450px);
    
    
}

.fullscreen #fullscreen-button {
    display: block;
}

.fullscreen #exit-fullscreen-button {
    display: block;
}

/* Ensure the normal button is hidden in fullscreen mode */
#exit-fullscreen-button {
    display: block;
}

.ci-angle-down:before {
    content: \e688;
}