.time-input-wrapper {
    position: relative;
    display: inline-block;
}

.time-input {
    /* Adjust the width to fit your design, this value cuts off the AM/PM selector */
    width: 110px;
}

.time-input::-webkit-calendar-picker-indicator {
    /* Hide the dropdown arrow if you want */
    display: none;
}

/* This pseudo-element is used to cover the AM/PM part */
.time-input-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px; /* Adjust this value based on your input's styling to cover AM/PM */
    background-color: white; /* Match your input's background color */
}

.legacy-container {
    margin: 20px;
    padding: 20px;
    background-color: #efe7e7;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.no-bullet {
    list-style-type: none;
    padding-left: 0; /* Optional: to align with other list items */
}

.form-with-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.countdown-timer {
    margin-left: 70%; /* Adjust as needed */
}

.margin-bottom-20 {
    margin-bottom: 20px;
}