/* Hide infinite scroll button */
div#infinite-handle {
    display: none !important;
}

span:has(> button:contains("Older posts")) {
    display: none !important;
}

/* Floating subscribe button - horizontal layout */
.floating-subscribe-btn {
    position: fixed;
    bottom: 20px;
    right: 80px;
    background-color: #1D4D5C;
    color: white !important;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}
.floating-subscribe-btn:hover {
    background-color: #4A7380;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
/* Email field box */
.tnp-field.tnp-field-email {
    border: 2px solid #e4e4e4a3 !important;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    background: white;
    position: relative;
}
.tnp-field.tnp-field-email > label {
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 0 10px;
    font-weight: bold;
    color: #1D4D5C;
    font-size: 16px;
}

/* Language dropdown box */
.tnp-field.tnp-field-profile {
    border: 2px solid #e4e4e4a3 !important;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    background: white;
    position: relative;
}
.tnp-field.tnp-field-profile label {
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 0 10px;
    font-weight: bold;
    color: #1D4D5C;
    font-size: 16px;
}
.tnp-field.tnp-field-profile select {
    border: none;
    padding: 0px 10px;
    width: 100%;
    font-size: 16px;
}
/* Geography checkboxes box */
div.tnp-field.tnp-lists {
    border: 2px solid #e4e4e4a3 !important;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    background: #f9f9f9;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
div.tnp-field.tnp-lists::before {
    content: "Geography";
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 0 10px;
    font-weight: bold;
    color: #1D4D5C;
    font-size: 16px;
}
div.tnp-field.tnp-lists > div {
    width: 33%;
    margin-bottom: 10px;
}
/* Subscribe button */
.tnp-submit input[type="submit"] {
    background-color: #1D4D5C !important;
    color: white !important;
    border: none !important;
    padding: 15px 40px !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: bold !important;
}
.tnp-submit input[type="submit"]:hover {
    background-color: #4A7380 !important;
}