/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  background-color: #f5f5f5;
}


/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

body > .container {
  padding: 30px 15px 0;
}
.container .text-muted {
  margin: 20px 0;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

code {
  font-size: 80%;
}

/* Customize container */
@media (min-width: 768px) {
  .container {
	max-width: 600px;
  }
}
.countdown-container {
    padding: 20px;
}

.title {
    background: linear-gradient(90deg, #4facfe, #00c6ff);
    padding: 10px;
    border-radius: 10px;
    color: white;
    display: inline-block;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.time-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    min-width: 80px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.time-box:hover {
    transform: scale(1.05);
}

.time-box span {
    font-size: 28px;
    font-weight: bold;
    display: block;
    color: #333;
}

.time-box small {
    color: #777;
}

/* Responsive */
@media (max-width: 576px) {
    .time-box {
        min-width: 60px;
        padding: 10px;
    }
}