.pmfby-activities{
    display: flex;
    align-items: center;
    justify-content: center;
}

.pmfby-container {
    font-family: 'Raleway', sans-serif;
    margin: 25px 0;
    text-align: left;
}

.pmfby-title {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.pmfby-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
	align-items: center;
    justify-content: center;
}

.pmfby-season-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    transition: background-color .25s ease;
}

.btn-kharif {
    background: #008744;
}

.btn-kharif:hover {
    background: #006b35;
}

.btn-rabi {
    background: #005A2B;
}

.btn-rabi:hover {
    background: #00441b;
}

/* ---------- Modal ---------- */

.modal-xl {
    max-width: 95%;
}

.modal-content {
    border-radius: 8px;
    overflow: hidden;
}

.modal-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.pmfby-iframe-container {
    padding: 0;
    background: #525659;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.pmfby-iframe-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}

.pmfby-loader-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {

    .pmfby-title {
        font-size: 22px;
    }

    .pmfby-season-btn {
        width: 100%;
    }

    .pmfby-iframe-container {
        height: 65vh;
        min-height: 450px;
    }
}