
/* Date Icons in Search Form */
.form-group.position-relative {
    position: relative;
}

.date-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999; /* Match placeholder color */
    pointer-events: none; /* Allow click through to input */
    font-size: 14px;
}

/* Ensure the icon doesn't overlap text if the input is full */
.form-search .form-control {
    padding-right: 35px; 
}
