
/* --------------------------------------------------- */

.bookmark_menu {
	margin-bottom:20px;
}
.bookmark_menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.bookmark_menu li {
	display:block;
	font-size:14px;
	margin: 0;
}
.bookmark_menu li a.btn {
    border-radius: 4px;
    padding: 8px 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.bookmark_menu li a.btn_blue_brd {
    border: 1px solid #ccc;
    background: #fff;
    color: #555;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.bookmark_menu li a.btn_blue_brd:hover {
    background: #f5f5f5;
    color: #333;
    border-color: #bbb;
}
.bookmark_menu li a.btn_red_brd {
    border: 1px solid #ff7f90;
    color: #ff7f90 !important;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.bookmark_menu li a.btn_red_brd:hover {
    background: #fff0f2;
}


/* Checkbox Area */
.recruit_list_bookmark {
	position:absolute;
	top: 15px; /* Aligned visually with title */
	left: 15px;
	display:block;
    width: 24px;
    height: 24px;
	padding:0;
    z-index: 2;
}

/* Hide default checkbox */
.recruit_list_bookmark input {
    display: none;
}

/* Custom Checkbox Label */
.recruit_list_bookmark label {
    display: block;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px; /* Soft rounding */
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.recruit_list_bookmark label:hover {
    border-color: #bbb;
}

/* Checked State */
.recruit_list_bookmark input:checked + label {
    background-color: #ff7f90; /* Matching the pinkish theme seen in screenshot */
    border-color: #ff7f90;
}

/* Checkmark Icon */
.recruit_list_bookmark input:checked + label::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Adjust Title Position to clear checkbox */
.bookmark .recruit_list_head h3 {
    margin-left: 45px !important;
    padding-top: 5px; /* Vertical align with checkbox approximately */
}

/* Ensure hit area is decent */
.bookmark .recruit_list_head {
    position: relative;
}

/* spview */
@media screen and (max-width:767px) {
	.bookmark_menu li {margin-right: 5px;}
	.bookmark_menu li a {font-size: 11px !important;padding: 6px 10px !important;}
    
    .recruit_list_bookmark {
        top: 12px;
        left: 10px;
    }
    .bookmark .recruit_list_head h3 {
        margin-left: 35px !important;
    }
}
