/* Banner */
.isex-banner {
    background: #fafafa;
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
}

/* Logo */
.isex-logo {
    position: absolute;
    top: -10px;
    left: 5%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 0;
    z-index: 3;
}

/* Gender Vote Container */
.isex-gender-vote {
    font-family: 'Be Vietnam Pro', sans-serif;
    position: absolute;
    top: 150px; /* Nửa trong banner nửa ngoài */
    width: 100%;
    display: flex;
    justify-content: space-between; /* Hai đầu trái phải */
    padding: 0 0px;
    box-sizing: border-box;
}

/* Gender Button */
.isex-gender-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 120px; /* Khoảng rộng đủ cho image và số */
}

/* Gender Images */
.isex-gender-btn img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-sizing: border-box;
}

/* Border colors for gender images */
.isex-gender-btn[data-type="female"] img {
    border: 3px solid #ff69b4cc; /* Pink */
}

.isex-gender-btn[data-type="male"] img {
    border: 3px solid #2196f3; /* Blue */
}

/* Counter Text */
.isex-gender-btn span {
    font-size: 24px;
    font-weight: bold;
    color: #185abc;
    margin-top: 0px;
}

/* Gender Question Text */
.isex-gender-question {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: bold;
    background: #185abc;
    color: #f9f5ec;
  text-shadow: 0px 1px 0px #000;
    padding: 4px 10px 0;
    border-radius: 4px;
}

/* Gender Question Text */
.isex-gender-male-female {
    position: absolute;
    top: 66px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: bold;
    color: #185abc;
}
/* Action Row */
.isex-action-row {
    background-color: #185abc;
    display: flex;
    justify-content: space-between;
    padding: 12px 10px;
    font-size: 14px;
	border-top: 1px solid #3e76c8;
	border-bottom: 1.5px solid #1c4a8e;
    align-items: center;
    margin-top: 60px; /* Vì gender vote nằm ngoài banner */
}

/* Action Buttons */
.isex-action-btn {
	background: #002455;
    font-family: 'Be Vietnam Pro', sans-serif;
    padding: 5px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #fff;
  text-shadow: 0px 0px 0px #000;
	border: 1px solid #3e76c8;
	border-radius:25px;
    cursor: pointer;
    user-select: none;
}

.isex-action-btn span {
    font-weight: bold;
    font-size: 14px;
}

/* Menu Toggle Button */
.isex-menu-icon a{
    padding: 8px 0px;
    font-size: 14px;
    color: #fff;
  text-shadow: 0px 0px 0px #000;
    cursor: pointer;
	text-decoration: none;
    user-select: none;
}
