.fpm-tasks .addSchedule{
	width: 16%;
	margin: 5px;
}

.fpm-tasks .addSchedule input{
	margin-top: 8px;
	border: 1px solid rgb(245 246 250);
	padding: 0 .9375rem;
	color: #2d405a;
	font-size: var(--initFontSize);
	line-height: calc(var(--initFontSize) + 1.25rem);
	min-height: calc(var(--initFontSize) + 1.25rem);
	background-color: #fff;
	border: 1px solid #e7eff0;
	max-width: 9.375rem;
}
.fpm-tasks .addSchedule select{
	margin-top: 8px;
	border: 1px solid rgb(245 246 250);
	padding: 0 .9375rem;
	color: #2d405a;
	font-size: var(--initFontSize);
	line-height: calc(var(--initFontSize) + 1.25rem);
	min-height: calc(var(--initFontSize) + 1.25rem);
	background-color: #fff;
	border: 1px solid #e7eff0;
	max-width: 7.375rem;
}

.fpm-tasks .addSchedule label {
    display: block;
    font-size: var(--initFontSize);
    line-height: calc(var(--initFontSize) + .625rem);
    color: var(--graySallowColor);
}

.fpm-tasks .dd-task .ms-title {
    font-weight: 500;
    font-size: 1.125rem;
    color: #2d405a;
    margin: 0;
    outline: none;
    background-color: transparent;
    border: none;
    text-align: left;
}

.tooltip-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-weight: bold;
    border-radius: 50%;
    background: #0073aa; /* WP blue */
    color: #fff;
    cursor: pointer;
    margin-left: 5px;
    font-size: 13px;
    position: relative;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    position: absolute;
    z-index: 9999;
    transform: translateX(5px);
    white-space: nowrap;
    transition: opacity 0.2s;
    margin-left: 5px;
}

.tooltip-icon:hover + .tooltip-text {
    visibility: visible;
    opacity: 1;
}

