    /* Reset box-sizing */
* {
  box-sizing: border-box;
}

/* Body and page layout. Nuo čia tas geras senas */

/*<body>*/
body {
  font-family: 'Alatsi', sans-serif;
  background-color: #2E7BFF;
  color: white;
  min-height: 100vh;
}

/* Header */
header {
  background-color: #1649b0;
  position: sticky;      
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
}
/*h1*/
header h1 {
  margin: 0;
  font-size: 2.5em;
}
/*for a title*/
a.title-link {
  text-decoration: none; /* removes underline */
  color: #fff; /* keeps the current text color */
}


nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  font-size: 16px;
}
/*kad tas underline'as b8t7 kai su pele palieti*/
nav a:hover {
  text-decoration: underline;
}
.container {
  display: flex;
  width: 100%;
  padding: 20px;
  transition: margin-top 0.3s ease;
  min-height: 100vh;
  justify-content: center;
}


@media screen and (max-width: 950px) and (min-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .container {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  nav {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    text-align: center;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu a {
    margin: 8px 0;
  }

  .container {
    flex-direction: column;
    align-items: center;
    padding: 15px;
    min-height: 0vh;
  }
}


/*Heading enddddddddds here*/


.container.nav-open {
    margin-top: 280px; /* Adjust based on your nav height */
}

*/
/* Login box styles */
.login-box {
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  align-items: center;
  flex-direction: column;

}

.login-box h2 {
  color: white;
  margin-bottom: 30px;
  text-align: center;
}

.login-box input[type="text"],
.login-box input[type="password"],
 .login-box input[type="number"]{
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: none;
  border-radius: 15px;
  font-family: 'Alatsi', sans-serif;
  font-size: 16px;
}

.login-box button, .login-box .btn,
.login-box input[type="button"],
.login-box input[type="submit"] {
  background-color: #ff884d;
  color: black;
  font-weight: bold;
  border: none;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  width: 100%;
  font-family: 'Alatsi', sans-serif;
}
.login-box select {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: none;
  border-radius: 10px;
  font-family: 'Alatsi', sans-serif;
  font-size: 16px;
  background-color: white;
  color: black;
  appearance: none;        /* removes default OS dropdown styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  box-sizing: border-box;
}

.login-box select:invalid {
  color: #999;
}

.login-box button:hover {
    background-color: #c96c3e; 
}
.login-box button.Cancel,
.login-box input[type="submit"].Cancel {
  background-color: #ffb282;
}
.login-box button.Cancel:hover,
.login-box input[type="submit"].Cancel:hover {
    background-color: #c88b66;
}


.messages {
  margin: 20px auto;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.content-wrapper.narrow {
  max-width: 600px;
}

.content-wrapper.full {
  max-width: none; 
}


.error {
  color: #ffdede;
  background-color: #b50000;
  max-height: 50px;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
  max-width: 400px;   /* match your .task-form or prize grid width */
  margin: 0 auto 20px auto;
}
.success{
  color: #0b0a0a;
  background-color: #04c914;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
  max-width: 400px;   /* match your .task-form or prize grid width */
  margin: 0 auto 20px auto;
}
/*login ends here*/
/*TAAAAAAAAAAAAAAAASSSSK ICON*/
.task-icon {
  position: fixed; /* fixed to viewport */
  bottom: 20px;
  right: 20px;
  background-color: #FF914D;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 1000;
  overflow: hidden;
}

.task-icon:hover {
  background-color: #e67f40;
  transform: translateY(-3px);
}

.task-icon-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.task-icon-main {
  font-size: 2.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333;
}

.task-icon-sub {
  font-size: 1rem;
  position: absolute;
  bottom: 12px;
  right: 12px;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 500px) {
  .task-icon {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .task-icon-main {
    font-size: 1.8rem;
  }
  .task-icon-sub {
    font-size: 0.8rem;
    bottom: 8px;
    right: 8px;
  }
}

 .somethogn{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif; /* Using Poppins from Google Fonts, or choose a generic sans-serif */
}

/* headddder menuuuuuu I suppose--------------------- */
.main-header {
    width: 100%;
    background-color: #004AAD; /* Header color: #004AAD */
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white; /* Text color for header */
    position: relative;
}

.header-content {
    max-width: 1200px; /* Limit header content width */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700; /* Bolder for the logo */
    color: white;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px; /* Space between navigation items */
}

.main-nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #dddddd; /* Slightly lighter on hover */
}
/*Heading enddddddddds here*/






/* I believe it is for creating tasks */

.task-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  gap: 20px;
  margin: 0 auto;
}

.task-form h2 {
  text-align: center;
  font-size: 35px;
}

.form-group-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-field {
  flex-grow: 1;
  position: relative;
}

/* Points field */
.points-field {
  flex-grow: 0;
  flex-shrink: 0;
  width: 120px;
}

/* Inputs, selects, textarea */
.form-field input[type="text"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  font-weight: 500;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.form-field select:invalid {
  color: #999;
}

.form-field input[type="text"]:focus,
.form-field input[type="number"]:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #004AAD;
}

/* Placeholder styling */
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
}

/* Select dropdown arrow */
.select-wrapper::after {
  font-size: 1.2em;
  color: #555;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

/* Textarea */
.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

/* ===== Custom Dropdown (Tasks + Users) ===== */
.dropdown {
  position: relative;
  width: 100%;
}

/* Search input inside dropdown */
#taskSearch {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Unified dropdown list (used for both tasks & users) */
.dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 5px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 5px 0;
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Show dropdown when active */
.dropdown-list.show,
.select-btn.open ~ .dropdown-list {
  display: block;
}

/* Items inside dropdown */
.dropdown-list li {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-list li:hover {
  background: #f1f1f1;
}

/* Checkboxes for user selection */
.dropdown-list input[type="checkbox"] {
  accent-color: #004AAD; /* Theme color */
  cursor: pointer;
}


/* Select button for users */
.select-btn {
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  font-family: Arial;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.select-btn .btn-text {
  text-transform: none;    /* Let names show normally */
  color: #0000;             /* Darker for selected names */
  white-space: nowrap;     /* Prevent breaking into multiple lines */
  overflow: hidden;        /* Hide overflow */
  text-overflow: ellipsis; /* Add "..." if too long */
  max-width: 90%;          /* Prevent overlapping the arrow */
}

.select-btn.open {
  border-color: #004AAD;
}

.select-btn .btn-text {
  text-transform: uppercase;
  color: #888;
}


/* Submit Button Styling */
.submit-button,
.submit-button input[type="submit"]  {
    background-color: #FF914D; /* Orange color from the image: #FF914D */
    color: white;
    flex: 1;
    padding: 15px 30px;
    text-decoration: none;
    border: none;
    border-radius: 10px; /* Rounded corners */
    font-size: 1.1rem;
    font-weight: 600; /* Bolder text for the button */
    text-transform: uppercase; /* Match screenshot */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth hover effect */
    width: 100%; /* Make button full width by default */
    max-width: 200px; /* Limit button width as in image */
    align-self: center; /* Center the button within the flex container */
}
.submit-button.Cancel,
.submit-button input[type="submit"].Cancel{
  background-color: #ffb282;
  text-align: center;
}

.submit-button:hover {
    background-color: #d27439; /* Slightly darker orange on hover */
}
.submit-button.Cancel:hover,
.submit-button input[type="submit"].Cancel:hover {
    background-color: #c88b66; /* Slightly darker orange on hover */
}
.login-box.button.Cancel {
  background-color: #ffb282;
}
.login-box.button.Cancel:hover {
    background-color: #c88b66; /* Slightly darker orange on hover */
}
.login-box.button:hover {
    background-color: #ffb282; /* Slightly darker orange on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 500px) {
    .form-group-row {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        gap: 15px; /* Adjust gap for stacked items */
    }
    .points-field {
        width: 100%; /* Make points field full width on small screens */
    }
}



/*Profile page*/
.profile-rectangle {
  margin:10vh auto;
  text-align: center;
  align-items: center;
  max-width: 600px;
}
.profile-background{
  background-color: #0d2d6c;
  border-radius: 80px;
  padding: 20px;
}

.profile-info p {
  font-size: 24px;
  margin: 35px 0 0 0;
  line-height: 1.4;
  border-radius: 10px;
}
.profile-info input[type="text"],
.profile-info input[type="number"],
.profile-info input[type="password"] {
  background-color: white;
  border-radius: 100px;
  border: 1px solid #ccc;
  padding: 10px 20px;
  font-size: 16px;
  width: auto;
  min-width: 50px;
  max-width: 300px;
  margin: 5px 0;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s;
}
.profile-info td {
  font-size: 24px;
  margin: 35px 0 0 0;
  line-height: 1.4;
  border-radius: 10px;
}

.profile-info strong {
  font-weight: 700;
}

.profile-buttons {
  display: inline-block;
  display: flex;
  gap: 10px;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-direction: row;
}
.profile-button{
  background-color: #1649b0;
  color: white;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 100px;
  margin-top: 0px;
  font-family: 'Alatsi', sans-serif;
  transition: background-color 0.2s ease;
  text-decoration: none;
}
@media (max-width: 500px){
  .profile-rectangle{
    margin: 0 auto;
  }
}
/*profile ends here*/


/*users*/
.leaderboard {
    width: auto;
    text-align: center;
    max-width: 600px;

}
.leaderboard h2{
  font-size: 35px;
}
.leaderboard table{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-left: white;
  width: auto;
  font-size: 30px;
}
.leaderboard table.small {
  font-size: 20px;
}
.leaderboard th, .leaderboard td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}
/*Stats like statistics. Anyway, I just need a couple of styles for the page and leaderboard doesnt have them*/
.two-tables{
  display: flex;
  flex: 1;
  flex-direction: row;
  gap: 50px;
  justify-content: center;
}
.two-tables h2{
  font-size: 30px;
}
.two-tables table{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-left: white;
  width: auto;
  max-width: 600px;
  font-size: 30px;
}
.two-tables th, .two-tables td{
  padding: 6px 10px;
  font-size: 25 px;
}

.leaderboard input[type="text"],
.leaderboard input[type="number"]{
  width: 100%;
  padding: 5px;
  border: none;
  text-align: center;
  color: black;
  border-radius: 15px;
  font-family: 'Alatsi', sans-serif;
  font-size: 20px;
  background-color: white;
}

@media screen and (max-width: 599px) {
  .two-tables {
    flex-direction: column;
    align-items: center; 
  }

  .leaderboard table {
    width: auto; 
    max-width: 100%;   
  }
}
/*PRIZESSSSSSSSSSSSS*/
.prizes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.prize {
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    text-align: center;
}

.prize:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.prize h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    color: #333;
}

.prize p {
    background-color: #007bff;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 10px;
}
/*createprizes end here*/
/*I think showprizes comes here*/
.prize-container {
    margin-top: 100px;
    padding: 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto; /* center the container */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the first two boxes horizontally */
    gap: 20px;
}
.prize-boxes{
  width: 100%;
  max-width: 600px;
  margin: 0 auto; /* center the container */
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center; /* Center the first two boxes horizontally */
  gap: 20px;
}
.prize-box{
  background-color:blue;
  border-radius: 15px;
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  font-size: 20px;
}
.prize-cards-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}
.prize-card{
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.2s ease;
  flex: 0 1 calc(33.333% - 20px); /* Two cards per row with gap */
  min-width: 270px; /* Minimum width for smaller screens */
}

.prize-card:hover {
  transform: scale(1.01);
}

.prize-card h1 {
  margin: 0 0 10px 0;
  font-size: 22px;
  color: #333;
}
.prize-card h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: normal;
  color: #666;
}

.prize-display h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.prize-entry {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.05);
}

.prize-name {
    font-weight: bold;
    color: #444;
}

.prize-points {
    color: #888;
}

.prize-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.05);
}

.buy-btn {
    background: #28a745;
    color: white;
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.not-enough {
    color: #999;
    font-size: 0.9em;
}

.create-link {
    text-decoration: none;
    color: #FFF;
    font-weight: bold;
}
@media (max-width: 600px){
  .prize-box{
    display: block;
    height:131px;
    display: flex;
    justify-content: center;     /* center horizontally */
    align-items: center;
  }
}

/*Show prizes ends here*/
/*quotes*/
.quote-box {
  margin: auto;
  color: white;
  font-size: 30px;
  font-weight: bold;
  margin-top: 60px;
}
.quote-box-author {
  text-align: right;
  font-size: 20px;
  margin-top: 10px;
  font-weight: normal;
}
/* Overall task list wrapper */

.task-tasklist-container{
  padding: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  flex-direction: column;  /* stack filter and tasks vertically */
  align-items: center;     /* center horizontally */
  justify-content: center;
  gap: 20px;
}
.tasklist-container {
  display: flex;
  flex-wrap: wrap; 
  margin-top:10px;   
  justify-content: flex-start;
  gap: 20px;
}


.filter-select {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 140px;
}


.filter-form {
  display: inline-block;
  margin: 10px 5px;
  gap:10px;
}
.filter-form button{
  font-size: 13px;
  color:white;
  background-color: black;
  border-radius: 8px;
  font-weight: 500px;
  padding: 6px 10px;
  box-shadow: none;
  outline: none;
  min-width: 140px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0px 0px 0px 5px;
}
.filter-form button:hover{
  background-color: rgb(41, 41, 41);
}
.filter-select:hover,
.filter-select:focus {
  border-color: #888;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  outline: none;
}

.filter-container {
  margin-bottom: 20px;
  justify-content: flex-end;
  width: 100%;
  max-width: 820px;
  max-height: 40px;
  gap: 10px;

}
.task-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Task card container */
.task-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 0 0 250px;
  position: relative;
  transition: transform 0.2s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.task-desc {
  overflow-y: scroll;
  font-size: 14px;
  max-height: 24px;
  color: #333;
  margin-top: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal; /* ensures text wraps */
}

.task-card:hover {
  transform: scale(1.01);
}

/* Task title */
.task-card h1 {
  margin: 0 0 10px 0;
  font-size: 22px;
  color: #333;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.3;
}

/* Task points & user */
.task-card h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: normal;
  color: #666;
}

/* Complete button */
.smaller-complete-button {
  background-color: #ff884d;
  color: white;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 6px;
  margin-top: 0px;
  font-family: 'Alatsi', sans-serif;
  transition: background-color 0.2s ease;
  text-decoration: none;
}
/*Delete button*/
.smaller-complete-button.delete{
  background-color: red;
}
.smaller-complete-button.delete:hover{
  background-color: rgb(172, 0, 0);
}
/*Buy button*/
.smaller-complete-button.buy{
  background-color:#04c914;
}
.smaller-complete-button.buy:hover{
  background-color:#02740b;
}
/*Edit button*/
.smaller-complete-button.edit{
  background-color: #34b3ff;
}
.smaller-complete-button.edit:hover{
  background-color: #298fca;
}
/*Complete button*/
.smaller-complete-button:hover {
  background-color: #e6733f;
}
.task-card-button-container{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: left;
  width: 100%;
}

.button-container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
td .button-container {
  display: flex;
  flex-direction: row;  /* horizontal */
  gap: 8px;             /* space between buttons */
}

@media screen and (max-width: 600px) {
  .tasklist-container{
    justify-content: center;
  }
  .task-card {
    width: 90%;
  }
}

/* Hamburger button (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* For mobile navigation */
.mobile-nav {
  visibility: hidden;
  flex-direction: column;
  background-color: #004AAD;
  padding: 10px 20px;
  gap: 10px;
  position: absolute;
  top: 100%;
  right: 0;
  width: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-bottom-left-radius: 10px;
}
.mobile-nav.open {
    visibility: visible;
    opacity: 1;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav a {
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 2;
}

.mobile-nav a:hover {
  background-color: #2E7BFF;
}

/* Show hamburger on small screens */
@media screen and (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

.confirm-task-complete-container{
  gap: 30px;
  margin-top: 20vh;
}
/*confirmation window*/

.confirm-task-complete-window{
  display: flex;
  flex-direction: column;
  max-width: 600px;
  max-height: 600px;
  margin-top: 10px;
  padding: 20px;
  align-items: center;
  background-color: white;
  color: black;
  border-radius: 12px;
}
.confirm-task-complete-window-button{
  background-color: #ff884d;
  color: black;
  font-weight: bold;
  border: none;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  width: 100%;
  font-family: 'Alatsi', sans-serif;
}


