/* Button Styling */
.ebp-trigger-button {
    padding: 12px 24px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}

/* .ebp-trigger-button .svg-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
} */

.ebp-trigger-button .svg-icon.left {
    margin-right: 10px;
}



.ebp-trigger-button .svg-icon.right {
    margin-left: 10px;
}

/* Modal Overlay */
.ebp-modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

/* Modal Container */
.ebp-modal-container {
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: ebpFadeIn 0.3s ease-out;
    overflow: hidden;
}

/* Modal Header */
.ebp-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ebp-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
}

.ebp-modal-close {
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
	position:relative;
	left:97%;
}

.ebp-modal-close:hover {
    color: #333;
}

/* Modal Body */
.ebp-modal-body {
    padding: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ebp-modal-container {
        width: 95%;
        margin: 10px;
    }
	.ebp-trigger-button
	{
		display:block;
		margin:auto;
	}
	.ebp-modal-close {
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    position: relative;
    left: 46%;
}
}

/* Animation */
@keyframes ebpFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
