/* Basic Styling */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: conic-gradient(from 0deg, #e76f51, #f4a261, #2a9d8f, #264653, #e76f51);
}

/* Timer Container */
.container {
    text-align: center;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
    background: rgb(0, 0, 0);
    color: white;
    width: 600px;
}

/* Timer Display */
#timer {
    font-size: 48px;
    margin: 20px 0;
}

/* Progress Bar */
progress {
    width: 100%;
    height: 10px;
    margin-bottom: 10px;
}

/* Input Field */
#custom-time {
    padding: 5px;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Buttons */
button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#start { 
    background: transparent;
    border: 2px solid #28a745;
    color: white;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

#start:hover {
    background: #28a745;
    color: #fff;
    transform: rotate(5deg);
}

#pause { 
    background: transparent;
    border: 2px solid #ffc107;
    color: white;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

#pause:hover {
    background: #ffc107;
    color: #fff;
    transform: rotate(5deg);
}

#reset { 
    background: transparent;
    border: 2px solid #dc3545;
    color: white;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

#reset:hover {
    background: #dc3545;
    color: #fff;
    transform: rotate(5deg);
}


#short-break { 
    background: transparent;
    border: 2px solid #007bff;
    color: white;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

#short-break:hover {
    background: #007bff;
    color: #fff;
}

#long-break { 
    background: transparent;
    border: 2px solid #31018a;
    color: white;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

#long-break:hover {
    background: #31018a;
    color: #fff;
}