/* 设置整个表单容器背景为白色，透明度为95% */
.vrcdivsearch, .vrcdivsearch-inner, .vrc-searchf-section-locations, .vrc-searchf-section-datetimes, .vrc-searchf-section-categories, .vrc-searchf-section-sbmt {
    background-color: rgba(255, 255, 255, 100); /* 背景色设置为白色，并设置透明度为95% */
    border-radius: 10px; /* 设置圆角大小 */
    overflow: hidden; /* 防止圆角裁切内容 */
}

/* 给每个输入框、选择框和按钮添加圆角 */
input[type="text"], select, .btn {
    border-radius: 5px; /* 设置圆角大小 */
}

/* 为日期选择框和时间选择框的图标也添加圆角 */
.vrc-caltrigger {
    border-radius: 5px; /* 设置圆角大小 */
}

/* 可选：如果您希望整个页面的背景为白色，可以设置body的背景 */
body {
    background-color: #ffffff; /* 设置整个页面的背景色为白色 */
}

/* 隐藏标题 */
.vrc-main-title {
    display: none;
}

.vrcdivsearch {
    padding: 30px; /* 设置四边内边距为30px */
}

.page .entry-header {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}



.vrc-reqinfo-cont {
    display: none;
}


/* 移除点击菜单项时出现的虚线焦点框 */
a:focus,
a:active,
.menu-item a:focus,
.menu-item a:active {
  outline: none !important;
  box-shadow: none !important;
}


/* Vik Rent Car Search Form - White background no outer border */
form[action*="search-your-car"] {
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* 如果灰色是外层 module container */
.vrc-searchmod-wrap,
.vrc-searchmod,
.vrcdivsearch,
.vrc-searchmod-cont {
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* 内部每个 section 也改成白色 */
.vrc-searchmod-section-pickup,
.vrc-searchmod-section-datetimes,
.vrc-searchmod-section-categories,
.vrc-searchmod-section-sbmt {
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}