body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f8f8f8;
}

.logo {
  width: 200px; /* Adjust the width as per your requirements */
  height: 100px; /* Adjust the height as per your requirements */
}

.logo img {
  width: 100%; /* Make the logo image occupy the full width of its parent */
  height: 100%; /* Make the logo image occupy the full height of its parent */
  object-fit: contain; /* Maintain the aspect ratio of the logo image */
}
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav ul li a:hover {
  color: #000;
}

/* Footer Styles */
footer {
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
}

.footer-logo img {
  width: 50px;
  height: auto;
  margin-top: 60px;
  margin-bottom: 60px;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 60px;
}

.footer-column {
  margin: 0 20px;
}

h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  margin-bottom: 5px;
}

ul li a {
  text-decoration: none;
  color: #333;
}

ul li a:hover {
  color: #000;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 65px;
    background-color: #fff;
    box-shadow: 0 38px 91px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
}

.container2 {
    max-width: 900px;
    margin: 40px auto;
    padding: 65px;
    background-color: #9BCAD4;
    border-radius: 40px;
}

h1 {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #333;

}

p {
  margin-bottom: 20px;
}

.timer-container {
  text-align: center;
  margin-bottom: 20px;
}

.timer {
  font-size: 64px;
  font-weight: bold;
  color: #333;
}

.current-task {
  font-size: 24px;
  color: #666;
}

.button-container {
  text-align: center;
  margin-bottom: 20px;
}

button {
  margin: 0 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}

#start {
  background: linear-gradient(322deg, #49BCF6 , #49DEB2);
  /* Add other styling properties as needed */
}

#start:hover {
  background-color: #fff; /* White background on hover */
  color: #000; /* Black text on hover */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

#pause {
  background-color: #FF2E4C;
}

#pause:hover {
  background-color: #fff; /* White background on hover */
  color: #000; /* Black text on hover */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

#reset {
  background-color: #E0E0E0;
  color: #000; /* Black text on hover */
}

#reset:hover {
  background-color: #fff; /* White background on hover */
  color: #000; /* Black text on hover */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

#add-task {
  width: 100%;
  max-width: 220px;
  padding: 20px;
  background-color: #000000; /* Orange */
  border-radius: 10px 10px 10px 10px;
}

#add-task:hover {
  background-color: #fff; /* White background on hover */
  color: #000; /* Black text on hover */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


.task-container {
  margin-bottom: 20px;
}

.task-input input[type="text"] {
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
  padding: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
}


.task-input button {
  padding: 8px 16px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #28a745;
  border: none;
  border-radius: 5px 0 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.task-input button:hover {
  background-color: #218838;
}

.task-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.task-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  background-color: #f2f2f2;
  border-radius: 5px;
  margin-bottom: 8px;
}

.task-list li button {
  padding: 4px 8px;
  font-size: 12px;
  color: #fff;
  background-color: #dc3545;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.task-list li button:hover {
  background-color: #c82333;
}

.report-container {
  text-align: center;
}

.report-container h2 {
  margin-bottom: 10px;
}

.report-container p {
  margin-bottom: 0;
}

.heading-white {
  color: white;
}


.completed {
  color: gray;
}