a{
    text-decoration: none !important;
}
.btn-gradient-purple-pink {
    background: linear-gradient(90deg, #002f6c, #007bff) !important;
    color: #fff !important;
    border: none;
}

.tmx-wrapper {
    display: flex;
    justify-content: center;  /* Centers the whole content */
    padding: 30px 0;
}

/* Center content box */
.tmx-center-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 854px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #f0f2f8;
    padding: 14px 58px;
    border-radius: 66px;
}

/* Title */
.tmx-title {
    font-size: 22px;
    font-weight: 700;
    color: #054A74;
}

/* Button */
.tmx-btn {
     background: #126ca3; /* 054A74*/
    color: #fff;
    font-size: 18px;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 22px rgba(0, 51, 102, 0.20);
    transition: 0.3s;
}
.tmx-btn:hover {
    background: #0a76b7;
    transform: translateY(-3px);
}

.tmx-icon {
    background: #dff5ff;
    color: #054A74;
    padding: 10px;
    border-radius: 50%;
    width: 46px;
    text-align: center;
}


/* Popup Overlay */
.tmx-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup Box */
.tmx-box {
    width: 85%;
    height: 85%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    transform: translateY(40px);
    opacity: 0;
    transition: 0.35s;
}

.tmx-show {
    transform: translateY(0);
    opacity: 1;
}

/* Header */
.tmx-header {
    background: #063B78;
    color: #fff;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tmx-header-title {
    font-size: 18px;
    font-weight: 600;
}

.tmx-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tmx-head-btn {
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
}
.tmx-head-btn:hover { background: rgba(255,255,255,0.35); }

.tmx-close {
    font-size: 28px;
    cursor: pointer;
}

/* PDF Viewer */
.tmx-iframe {
    width: 100%;
    height: 100%;
    border: none;
}