input[type="text"],
input[type="date"] {
    padding: 10px 15px;
    width: 280px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="date"]:focus {
    border-color: #556536;
    box-shadow: 0 0 5px rgba(85, 101, 54, 0.5);
}

button {
    background-color: #556536;
    color: #ffffff;
    padding: 10px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #6a7a42;
    transform: scale(1.03);
}

.tabel-hasil {
    border-collapse: collapse;
    width: 100% !important;
    margin: auto;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}
  
.tabel-hasil th,
.tabel-hasil td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
  
.tabel-hasil th {
    background-color: #f5f5f5;
    color: #556536;
    font-weight: 600;
}
  
.tabel-hasil tr:last-child td {
    border-bottom: none;
}

#countdownContainer {
    text-align: center;
    padding: 20px;
    padding-top: 0px;
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
  
#countdownContainer h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}
  
#countdown {
    font-size: 1.5rem;
    font-weight: bold;
    color: #556536;
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    display: inline-block;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
  
.countdown-animate {
    animation: pulse 1s infinite;
}