
/* Modal Overlay */
.disablepaymob-modal {
    display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #ffffff;
	border: 1px solid #dcdcdc;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
/*	padding: 20px;*/
  width: 350px;
  max-width: 90%;
	z-index: 2000;
	font-family: Arial, sans-serif;
	box-sizing: border-box;
	/* text-align: center; */
}

/* Show modal */
.disablepaymob-modal.show {
    display: flex; /* or 'block', depending on your needs */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
}

/* Modal Content Box */
.disablepaymob-modal-content {
    background: linear-gradient(145deg, #e6f2ff, #e6f2ff);
    padding: 40px 30px;
    border-radius: 15px;
    /* width: 90%; */
/*    max-width: 50%;*/
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    animation: popIn 0.3s ease-out;
    color: #605757;
    /* font-family: 'Arial', sans-serif; */
    text-align: center;
/*    margin: 10% 30% 30% 30%;*/
    /* float: left;  */
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Header styling */
.disablepaymob-modal-content h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #605757;
}

.changemodemodal-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #605757;
}

/* Modal Buttons */
.modal-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}
.modal-buttons button {
    padding: 12px 25px;
    border-radius: 50px;
    background-color: #3586c2;  /* Light Blue background */
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.modal-buttons button:hover {
    background-color: #3586c2;  /* Lighter blue on hover */
    transform: translateY(-2px);
}

.modal-buttons button:focus {
    outline: none;
}
#confirmDisable {
    background-color: #871b1b;
}

#confirmDisable:hover {
    background-color: #871b1b;
}
/* Container for the tab links */
.paymob-admin-tab {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.paymob-admin-tab .tablinks {
    background-color: #ffffff !important;
    color: #2c7bbf !important;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 3px 6px rgba(44, 123, 191, 0.3);
    border-top: 1px solid #2c7bbf;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
   
.paymob-admin-tab .tablinks:hover {
    background-color: #2c7bbf !important; /* Active = blue */
    color: #ffffff !important; /* Active text = white */
    transform: scale(1.05); /* Slight scaling effect */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
   
.paymob-admin-tab .tablinks.active {
    background-color: #2c7bbf !important; /* Active = blue */
    color: #ffffff !important; /* Active text = white */
    font-weight: 700;
    box-shadow: 0 3px 6px rgba(44, 123, 191, 0.3);
    border: 0.25px solid #2c7bbf;
    border-bottom: #ffffff; /* Optional: make it blend into the content below */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}



 /* Add "New" badge to tab links where href contains section=paymob_subscription */
.paymob-admin-tab .tablinks[href*="section=paymob_subscription"]::after {
    content: "New";
    display: inline-block;
    background-color: #e46d29;
    color: white;
    font-weight: bold;
    font-size: 10px;
    padding: 2px 6px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-left: 6px;
    margin-top: 1px;
    animation: pulse 1s infinite;
}

/* Optional: Adjust hover color of the badge */
.paymob-admin-tab .tablinks[href*="section=paymob_subscription"]:hover::after {
    background-color: #d05a1f;
}