@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #2c3e50;
    color: #ecf0f1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18pt;
}

body {
    width: 90%;
}

h1 {
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 0.5em;
}

#remainingTime {
    font-weight: 300;
    font-size: 3rem;
    margin: 0.5em 0;
}

#progress-bar-container {
    width: 100%;
    height: 100px;
    background-color: #34495e;
    border-radius: 10px;
    margin: 2em 0;
    position: relative;
    overflow: hidden;
}

#progress-bar {
    width: 0;
    height: 100%;
    background-color: #3498db;
    transition: width 0.2s ease-in-out;
    border-radius: 10px;
}

#progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ecf0f1;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

button, input {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

button {
    background-color: #3498db;
    color: white;
    min-width: 150px;
}

button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

#start-button {
    background-color: #2ecc71;
}

#start-button:hover {
    background-color: #27ae60;
}

#stop-button {
    background-color: #e74c3c;
    display: none;
}

#stop-button:hover {
    background-color: #c0392b;
}

input[type="number"] {
    width: 70px;
    text-align: center;
    background-color: #ecf0f1;
    color: #2c3e50;
}

.bottomLeft {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.bottomLeft button {
    min-width: auto;
    padding: 8px 12px;
    font-size: 0.9rem;
}

.noScrollbar::-webkit-scrollbar {
    display: none;
}

.noScrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.centered {
    text-align: center;
}

.fontSize {
    font-size: 1rem;
}
