/* Soft Feminine Aesthetic */
body {
    font-family: 'Georgia', serif;
    background-color: #fdf6f8;
    color: #5a5a5a;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #fbe7eb;
    padding: 20px;
}

h1 {
    color: #b85c79;
    font-size: 2.5rem;
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #b85c79;
    font-size: 1.2rem;
    font-weight: bold;
}

nav a:hover {
    color: #8c3a53;
}

.hero {
    background-color: #fff2f4;
    padding: 50px 20px;
}

.hero h2 {
    font-size: 2rem;
    color: #b85c79;
}

.hero p {
    font-size: 1.2rem;
}

.content {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
}

footer {
    background-color: #fbe7eb;
    padding: 10px;
    font-size: 0.9rem;
    color: #8c3a53;
}
/* Style all links */
a {
    color: #b85c79; /* Soft pink */
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out; /* Smooth animation */
}

/* Hover effect: Color + slight lift */
a:hover {
    color: #8c3a53;
    text-decoration: underline;
    transform: translateY(-2px); /* Slight lift effect */
}
/* Styling for all paragraphs */
p {
    text-align: left; /* Aligns text to the left */
    max-width: 900px; /* Keeps content readable and not too wide */
    margin: 20px auto; /* Centers the block while keeping text left-aligned */
    padding: 20px; /* Adds more spacing inside the paragraph */
    font-size: 1.1rem; /* Makes text slightly bigger for readability */
    line-height: 1.6; /* Improves spacing between lines */
}
/* Dropdown Menu Styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff2f4;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    text-align: left;
    border-radius: 8px;
    z-index: 1;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: #b85c79;
    text-decoration: none;
    font-size: 1rem;
}

.dropdown-content a:hover {
    background-color: #fbe7eb;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}
/* Comment Section Styling */
.comment-section {
    max-width: 800px; /* Keeps it aligned with content */
    margin: 40px auto;
    padding: 20px;
    background-color: #fff2f4;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.comment-box {
    width: 100%; /* Makes it full width */
    padding: 15px; /* Increases padding for better text input */
    border: 1px solid #b85c79;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical; /* Allows user to resize the box */
}

.comment-btn {
    display: block;
    width: 100%;
    background-color: #b85c79;
    color: white;
    font-size: 1rem;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

.comment-btn:hover {
    background-color: #8c3a53;
}

/* Collapsible About Section */
.about-container {
    position: absolute; /* Allows precise positioning */
    top: 200px; /* Adjust this to move it up/down */
    right: 150px; /* Aligns it to the right */
    z-index: 10; /* Ensures it appears above other elements */
  }
  
  .about-toggle {
    background-color: #b85c79;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .about-toggle:hover {
    background-color: #8c3a53;
  }
  
  .about-content {
    display: none;
    position: absolute;
    top: 40px; /* Spacing below the button */
    right: -2px;
    width: 250px; /* Adjust width as needed */
    background-color: #fbe7eb;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 11; /* Ensures it's above other elements */
  }
  
  
  /* Improved Input Styling */
  .input-container {
    margin-bottom: 50px;
  }
  
  label {
    font-size: 22px;
    display: block;
    margin-bottom: 5px;
  }
  
  input {
    font-size: 24px;
    padding: 8px;
    width: 120px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
  }
  
  .green-input {
    color: green;
    border: 4px solid green;
    background-color: #e8f5e9;
  }
  
  .red-input {
    color: red;
    border: 4px solid red;
    background-color: #ffebee;
  }
  
  /* Button Styling */
  .button-53 {
    background-color: #b85c79;
    color: white;
    padding: 12px 24px;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .button-53:hover {
    background-color: #8c3a53;
  }
  
  /* Timer Indicator */
  .indicator {
    font-size: 180px;
    font-weight: bold;
    margin: 20px auto;
  }
  
  .green {
    color: green;
  }
  
  .red {
    color: red;
  }

  /* Centered Summary Styling */
.summary-container {
    display: none;
    text-align: center;
    margin-top: 40px;
    background: #fff2f4;
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Pretty Table */
  .summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  
  .summary-table th, .summary-table td {
    border: 1px solid #b85c79;
    padding: 12px;
    text-align: center;
  }
  
  .summary-table th {
    background-color: #fbe7eb;
    font-weight: bold;
  }
  
  /* Elapsed Time (Collapsible) */
  .elapsed-container {
    text-align: center;
    margin-top: 20px;
  }
  
  .elapsed-toggle {
    background-color: #b85c79;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .elapsed-toggle:hover {
    background-color: #8c3a53;
  }
  
  .elapsed-time {
    display: none;
    font-size: 22px;
    color: #333;
    margin-top: 10px;
  }

  
  .example-table-container {
      text-align: center;
      margin-top: 40px;
      background: #fff2f4;
      padding: 20px;
      border-radius: 10px;
      width: 60%;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }

  .example-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
      font-size: 20px;
  }

  .example-table th, .example-table td {
      border: 1px solid #b85c79;
      padding: 12px;
      text-align: center;
  }

  .example-table th {
      background-color: #fbe7eb;
      font-weight: bold;
  }

  .example-table td {
      background-color: #ffffff;
  }

  /* Highlight Alternating Rows */
  .example-table tbody tr:nth-child(even) {
      background-color: #fbe7eb;
  }

  .intervals-title {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Make "DONE" smaller & gray */
.done {
    font-size: 80px; /* Smaller than FAST/SLOW */
    color: gray;
}

.week-retrospect {
    text-align: center; /* Center all content inside */
    margin-top: 30px; /* Space above */
    padding: 20px; /* Add some padding */
    max-width: 800px; /* Keep it readable */
    margin-left: auto;
    margin-right: auto;
}

.subheading {
    text-align: center !important; /* Center the text */
    font-size: 50px !important; /* Adjust size if needed */
    margin-top: -10px !important; /* Move it up closer to the title */
    margin-bottom: 15px !important;
    color: #555; /* Soft gray for a subtle look */
}

  

