/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9f9f9;
    padding-top: 80px;
    width: 100%;
}

/* Blog Section */
.blog-section {
    max-width: 800px;
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: left;
}

.blog-title {
    font-size: 1.8em;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
}

.blog-subtitle {
    font-size: 1.2em;
    color: #555555;
    margin-bottom: 15px;
}

.blog-content {
    line-height: 1.6;
    color: #444444;
}

.blog-content h3 {
    font-size: 1.4em;
    color: #333333;
    margin-top: 20px;
}

.blog-content p,
.blog-content ul {
    margin-bottom: 15px;
}

.blog-content ul li {
    margin-left: 20px;
}

/* Flex Wrapper for Centered Container */
.full-width-center {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}

/* Updated Clock and Timer Section */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%; /* Full width */
    max-width: none; /* Remove max-width restriction */
    margin: auto; /* Center the container */
    padding: 20px;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}


.clock, .timer, .break-timer, .sound-control {
    margin-bottom: 20px;
}

h2 {
    color: #333333;
    margin-bottom: 10px;
}

#digitalClock, #countdownDisplay {
    font-size: 2em;
    color: #333333;
    margin-top: 10px;
}

.input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

input {
    padding: 8px;
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

button {
    margin-top: 10px;
    padding: 10px 15px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#muteButton {
    background-color: #ff4d4d;
}

.timer button {
    margin-right: 5px;
}

.footer {
  background-color: #1b1b1b;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  margin-bottom: 0;
  margin-top: 20px;
}

.footer h1 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.footer p {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer a {
  color: #0088cc;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-line {
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 10px;
}

.footer-line p {
  font-size: 14px;
  color: #ccc;
}

/* Floating Telegram Icon */
.telegram-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.telegram-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0088cc;
  display: flex;
  justify-content: center;
  align-items: center;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(0, 136, 204, 0);
  }
}

.telegram-icon svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}
