/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 28 2025 | 19:46:38 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* Main container */
.vrcsfentrytime.custom-time-dropdown {
    text-align: center;
/*     margin-top: 20px; */
}

/* Dropdown style */
.custom-time-dropdown .dropdown-container {
    position: relative;
    width: 200px;
    margin: auto;
    cursor: pointer;
}

/* Selected dropdown */
.custom-time-dropdown .dropdown-selected {
    padding: 6px;
    background-color: white;
    border: 1px solid #ddd;
    border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
    font-size: 1em;
    text-align: left;
    user-select: none;
	font-weight: 400;
	height: 39px;
	padding-left: 40px;
}

/* Dropdown options */
.custom-time-dropdown .dropdown-options {
    display: none;
    position: absolute;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.custom-time-dropdown .dropdown-options.show {
    display: block;
}

/* Dropdown items */
.custom-time-dropdown .dropdown-item {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
	font-weight: 400;
}

.custom-time-dropdown .dropdown-item:hover {
    background-color: #007bff;
    color: white;
}