/* NightMayor Plugin Styles */

@font-face {
    font-family: 'Akira';
    src: url('../fonts/akira.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --nm-font-heading: 'Akira', sans-serif;
    --nm-font-body: 'Be Vietnam Pro', sans-serif;
    --nm-highlight-yellow: #feff54;
}

.nm-section-header h2,
.nm-group-title,
.nm-agenda-title,
.nm-main-page-title {
    font-family: var(--nm-font-heading);
}

.nm-name,
.nm-name-alt {
    font-family: var(--nm-font-body);
    font-weight: 800;
}

.nm-form-wrapper {
    margin: 20px 0;
    padding: 20px;
    background: transparent;
    border-radius: 8px;
}

label.nm-checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0 !important;
}

label.nm-checkbox-label {
    display: flex !important;
    justify-content: flex-start;
    gap: 14px !important;
    color: #ffffff !important;
    font-weight: 400 !important;
}

.nm-form-wrapper h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.nm-form-group {
    margin-bottom: 15px;
}

.nm-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #444;
}

.nm-flex-row {
    display: flex;
    gap: 20px;
}

.nm-contact-fields {
    margin-bottom: 20px;
}

.nm-contact-fields .nm-form-group {
    flex: 1;
    margin-bottom: 20px;
}

.nm-home-form .nm-custom-input {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 18px 20px !important;
    border-radius: 12px !important;
    width: 100% !important;
    font-size: 14px !important;
    outline: none !important;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.nm-home-form .nm-custom-input::placeholder {
    color: #666 !important;
}

.nm-home-form .nm-custom-input:focus {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

@media (max-width: 600px) {
    .nm-flex-row {
        flex-direction: column;
        gap: 0;
    }
}

.nm-form-group input,
.nm-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.nm-btn {
    background: #c5a059;
    /* Elegant Gold/Brass */
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.nm-btn:hover {
    background: #b08d48;
}

.nm-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.nm-response {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.nm-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.nm-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Sharing Buttons */
.nm-sharing-buttons {
    margin: 30px 0;
    padding: 20px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
}

.nm-sharing-buttons a {
    display: inline-block;
    margin-right: 15px;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

.nm-share-fb {
    background: #3b5998;
    color: #fff;
}

.nm-share-x {
    background: #060400;
    color: #fff;
}

.nm-share-wa {
    background: #25d366;
    color: #fff;
}

/* Team Grid */
.nm-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.nm-team-member {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
}

.nm-team-member h4 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
}

.nm-member-overlay .nm-name-alt {
    color: var(--nm-black);
    font-size: 25px;
    margin-bottom: 15px;
    font-family: var(--nm-font-body);
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Events Grid & Filter */
.nm-events-filter {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}

.nm-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

.nm-events-grid {
    display: grid;
    /* auto-fit collapses empty tracks — auto-fill leaves blank columns on wide screens */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(16px, 3vw, 30px);
    margin-bottom: 40px;
    transition: opacity 0.3s ease;
    align-items: stretch;
}

.nm-event-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.nm-event-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.nm-event-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.nm-event-date {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

.nm-event-title {
    margin: 10px 0;
    font-size: 20px;
    color: #1a1a1a;
}

.nm-event-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.nm-event-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.nm-btn-alt {
    background: #1a1a1a;
}

.nm-btn-alt:hover {
    background: #333;
}

/* Sidebar Specific Form Styles */
.nm-sidebar-form-wrapper {
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.nm-sidebar-form-wrapper .nm-form-wrapper {
    padding: 0;
    margin: 0;
    box-shadow: none;
    border: none;
    background: transparent;
}

.nm-sidebar-form-wrapper .nm-form-group label {
    font-size: 13px;
}

.nm-sidebar-form-wrapper .nm-btn {
    width: 100%;
    padding: 10px;
}

.nm-sidebar-form-wrapper h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Home Widget - Dark Modern UI */
.nm-home-widget {
    background: #212121;
    color: #e0e0e0;
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    box-shadow: -1px 2px 13px 0px #0000009e;
}

.nm-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.nm-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nm-logo-placeholder {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
}

.nm-logo-placeholder::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: url('../../assets/chatbox.svg') no-repeat center;
    background-size: contain;
    /* optional but recommended */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nm-brand-text {
    display: flex;
    flex-direction: column;
}

.nm-brand-name {
    font-weight: bold;
    font-size: 18px;
    color: #fff;
}

.nm-status-indicator {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nm-status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background-color: #4cd137;
}

/* Status Colors */
.nm-status-online {
    color: #4cd137;
}

.nm-status-online::before {
    background: #4cd137;
}

.nm-status-away {
    color: #FDFF00;
}

.nm-status-away::before {
    background: #FDFF00;
}

.nm-status-offline {
    color: #888;
}

.nm-status-offline::before {
    background: #888;
}

.nm-status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.nm-widget-tabs {
    flex: 0 1 auto;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nm-tab-btn {
    flex: 1 1 0;
    min-width: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid transparent;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-family: inherit;
}

.nm-tab-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.nm-tab-btn:focus-visible {
    outline: 2px solid var(--nm-highlight-yellow);
    outline-offset: 2px;
}

.nm-tab-btn.active {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}

/* Step 1 */
.nm-input-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    position: relative;
}

.nm-input-wrapper textarea {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    padding: 0;
    margin-bottom: 20px;
    resize: none;
    outline: none !important;
    width: 100%;
}

.nm-input-wrapper textarea::placeholder {
    color: #666;
}

.nm-input-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nm-icon-btn {
    background: transparent;
    color: #888;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.nm-icon-btn:hover {
    color: #fff;
}

.nm-send-btn {
    background: #FDFF00;
    /* Bright yellow */
    color: #060400;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.nm-btn-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #888 !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

.nm-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

.nm-custom-btn:hover {
    background: #e1b12c !important;
    color: #060400 !important;
}

.nm-group-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding-left: 10px;
}

.nm-team-section {
    margin-bottom: 100px;
}

.nm-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 900px) {
    .nm-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nm-team-grid {
        grid-template-columns: 1fr;
    }
}

.nm-team-member {
    position: relative;
    text-align: center;
    background: transparent !important;
}

.nm-member-inner {
    position: relative;
    background: transparent !important;
}

.nm-team-photo {
    background: #212121;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    border: none !important;
    height: 400px;
    box-shadow: -1px 2px 13px 0px #0000009e;
}

.nm-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.nm-designation {
    color: var(--nm-highlight-yellow);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
    margin-bottom: 5px;
    font-family: var(--nm-font-body);
}

.nm-name {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    font-family: var(--nm-font-body);
    text-transform: capitalize;
}

/* Hover Overlay Card */
.nm-member-overlay {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: var(--nm-highlight-yellow);
    padding: 25px 20px;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.nm-team-member:hover .nm-member-overlay {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
}

.nm-designation-alt {
    color: var(--nm-black);
    font-size: 14px;
    font-weight: 400;
    display: block;
    text-transform: capitalize;
}

.nm-name-alt {
    color: var(--nm-black);
    font-size: 25px;
    margin-bottom: 15px;
    font-family: var(--nm-font-body);
    font-weight: 400;
}


.nm-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nm-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--nm-black);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nm-social-link svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nm-team-member:hover .nm-member-info {
    opacity: 0;
}

.nm-agenda-footer a.nm-btn-yellow.nm-btn-visit {
    background: var(--nm-bg-yellow) !important;
}
.nm-agenda-footer a.nm-btn-yellow.nm-btn-visit:hover {
    background: var(--nm-highlight-yellow) !important;
}
.nm-btn-yellow {
    background: var(--nm-highlight-yellow) !important;
    color: var(--nm-black) !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 400 !important;
}


.nm-home-form .nm-form-group {
    margin-bottom: 20px;
}

/* White inputs removed for dark widget UI */

.nm-send-btn .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Step 2 Form */
.nm-step-2 {
    animation: nmFadeUp 0.5s forwards;
}

.nm-btn-yellow {
    background: var(--nm-highlight-yellow);
    color: var(--nm-black);
}


.nm-btn-back {
    background: transparent;
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nm-form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

@keyframes nmFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nm-custom-btn {
    display: inline-block !important;
    margin-top: 15px !important;
    background: #FDFF00 !important;
    color: #060400 !important;
    padding: 12px 35px !important;
    border-radius: 12px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    transition: transform 0.2s ease !important;
}

.nm-custom-btn:hover {
    transform: translateY(-2px) !important;
    background: #f1b921 !important;
}

.nm-custom-button-wrapper {
    text-align: left;
    margin: 20px 0;
}

/* Home Template Styles */
.nm-home-template {
    color: #fff;
    padding-bottom: 50px;
}

.nm-section-header h2 {
    font-size: 32px;
    margin-bottom: 30px;
    border-bottom: 2px solid #FDFF00;
    display: inline-block;
    padding-bottom: 10px;
}

.nm-home-widget-section {
    margin-top: 80px;
}

/* Post Cards */
.nm-sticky-label {
    background: #FDFF00;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 10px;
}

/* Nomination Form Styles */
.nm-nomination-form {
    border-radius: 20px !important;
    max-width: 100%;
    color: #fff;
}

.nm-section-title {
    font-family: var(--nm-font-body);
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 30px 0 15px;
    padding-bottom: 5px;
}

.nm-nomination-form input,
.nm-nomination-form select,
.nm-nomination-form textarea {
    border: 1px solid #333 !important;
    color: #fff !important;
    border-radius: 10px !important;
    width: 100% !important;
    margin-bottom: 15px !important;
    font-size: 14px !important;
    padding: 12px 15px !important;
    box-sizing: border-box !important;
}

/* Use background-color only here so <select> can keep a separate chevron background-image */
.nm-nomination-form input,
.nm-nomination-form textarea {
    background-color: #212121 !important;
}

.nm-nomination-form input::placeholder,
.nm-nomination-form textarea::placeholder {
    color: #777 !important;
}

.nm-nomination-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 42px !important;
    font-weight: 600;
    color: #fff !important;
    background-color: #212121 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 14px 14px !important;
}

.nm-nomination-form select option {
    color: #1a1a1a;
    background-color: #fff;
}

/* Blog Contact Form Styles */
.nm-blog-contact {
    background: #1e1e1e !important;
    border-radius: 15px !important;
    padding: 30px !important;
    box-shadow: -1px 2px 13px 0px #0000009e !important;
    margin: 50px auto;
}

.nm-blog-contact input[type="text"],
.nm-blog-contact input[type="email"],
.nm-blog-contact textarea {
    background: #fff !important;
    color: #1a1a1a !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 15px !important;
    margin-bottom: 5px !important;
}

.nm-btn-wide {
    background: var(--nm-highlight-yellow) !important;
    color: var(--nm-black) !important;
    width: auto !important;
    padding: 12px 40px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.nm-team-page-template {
    color: #fff;
}

.nm-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 30px);
}

.nm-main-page-title {
    font-size: clamp(32px, 6vw, 42px);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.05;
}

.nm-page-content {
    margin-bottom: 60px;
    font-size: 18px;
    color: #ccc;
    max-width: 800px;
    line-height: 1.6;
}


/* Agenda / Events Page */
.nm-agenda-page-template {
    color: #fff;
    padding: 0 0 80px 0;
    min-height: 100vh;
}

.nm-agenda-page-header .nm-agenda-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px 24px;
    margin-bottom: 20px;
}

.nm-agenda-page-header .nm-main-page-title {
    flex: 1 1 auto;
    margin: 0;
    min-width: 0;
}

.nm-agenda-toolbar {
    display: flex;
    justify-content: flex-end;
    flex: 0 0 auto;
    margin: 0;
    align-self: center;
}

.nm-agenda-filter {
    position: relative;
    z-index: 30;
}

.nm-agenda-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(18, 18, 18, 0.92);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.nm-agenda-filter-toggle:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: #1a1a1a;
}

.nm-agenda-filter-toggle-label {
    letter-spacing: 0.02em;
}

.nm-agenda-filter-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 22px;
}

.nm-agenda-filter-icon span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

.nm-agenda-filter-icon span:nth-child(1) {
    width: 100%;
}

.nm-agenda-filter-icon span:nth-child(2) {
    width: 70%;
    align-self: flex-end;
}

.nm-agenda-filter-icon span:nth-child(3) {
    width: 45%;
    align-self: flex-end;
}

.nm-agenda-filter-panel {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 240px;
    padding: 0;
    margin: 0;
    list-style: none;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.nm-agenda-filter.is-open .nm-agenda-filter-panel {
    display: block;
}

.nm-agenda-filter-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 20px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
}

.nm-agenda-filter-option:last-child {
    border-bottom: none;
}


.nm-agenda-filter-option.is-active {
    color: var(--nm-highlight-yellow, #feff54);
}

.nm-agenda-events-container {
    transition: opacity 0.2s ease;
}

.nm-agenda-events-container.nm-loading {
    pointer-events: none;
}

.nm-agenda-container {
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.nm-agenda-card {
    background: #212121;
    border-radius: 25px;
    position: relative;
    box-shadow: -1px 2px 13px 0px #0000009e;
    overflow: hidden;
}

.nm-agenda-admin-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    display: flex;
    gap: 10px;
}

.nm-admin-action {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.nm-admin-action:hover {
    transform: translateY(-3px);
    border-color: var(--nm-highlight-yellow);
    color: var(--nm-highlight-yellow);
    background: #121212;
}

.nm-admin-action.nm-delete-btn:hover {
    border-color: #ff4d4d;
    color: #ff4d4d;
}

.nm-admin-action .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.nm-admin-action.nm-loading {
    opacity: 0.5;
    pointer-events: none;
}


.nm-agenda-image {
    width: 100%;
    height: clamp(220px, 42vw, 250px);
    overflow: hidden;
    background: #000;
}

.nm-agenda-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.nm-agenda-content {
    padding: clamp(24px, 5vw, 30px);
}

.nm-agenda-date {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.nm-agenda-title {
    font-family: var(--nm-font-body);
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
}

.nm-agenda-description {
    color: var(--nm-highlight-yellow);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 100%;
}
    
.nm-agenda-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 35px;
}

.nm-btn-visit {
    font-size: 15px;
    font-weight: 400;
    padding: 10px 30px !important;
    text-decoration: none !important;
    text-transform: capitalize;
    transition: all 0.3s ease !important;
    border-radius: 50px;
}


.nm-no-events {
    text-align: center;
    color: #888;
    font-size: 20px;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .nm-agenda-image {
        height: clamp(200px, 48vw, 300px);
    }

    .nm-agenda-title {
        font-size: clamp(22px, 5vw, 26px);
    }

    .nm-agenda-date {
        font-size: clamp(16px, 4vw, 20px);
    }

    .nm-agenda-footer {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
}

/* Nomination Page Masterpiece */
.nm-nomination-page {
    background: #D3D95C !important;
    /* Full Yellow Background */
    color: var(--nm-black);
}

.nm-spotlight-hero {
    background: transparent;
    color: var(--nm-black);
    position: relative;
    overflow: visible;
    cursor: none;
    margin-bottom: 50px;
}

.nm-spotlight-lens {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #feff10 0%, rgb(254 255 5) 100%, rgba(254, 255, 84, 0) 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nm-hero-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.nm-hero-text-col {
    text-align: center;
}

.nm-page-intro {
    font-size: 20px;
    font-weight: 300;
}

.nm-nomination-page .nm-page-title {
    font-family: var(--nm-font-heading);
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #0B0B0B;
}

/* Nomination Form Card */
.nm-nomination-container {
    position: relative;
    z-index: 10;
    padding-bottom: 150px;
}

.nm-form-card {
    background: #212121;
    border-radius: 20px;
    padding: 10px;
    box-shadow:-1px 2px 13px 0px #0000009e;
}

@media (max-width: 900px) {
    .nm-hero-row {
        flex-direction: column;
        text-align: center;
    }

    .nm-nomination-page .nm-page-title {
        font-size: 42px;
    }

    .nm-spotlight-lens {
        display: none;
    }

    .nm-spotlight-hero {
        cursor: default;
    }
}

/**
 * Plugin Post Card Styles
 */
.nm-post-card {
    background: #212121 !important;
}

.nm-post-card .nm-event-title {
    font-family: var(--nm-font-body);
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.nm-sticky-label {
    background: var(--nm-highlight-yellow);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
}

.nm-link-yellow {
    color: var(--nm-highlight-yellow);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: opacity 0.3s ease;
    display: inline-block;
}


.nm-dual-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.nm-btn-dark {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}


.nm-btn-yellow {
    display: inline-block;
    background: var(--nm-highlight-yellow);
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 15px;
    padding: 12px 30px;
    border-radius: 8px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    border: none;
}


.nm-section-title {
    font-family: var(--nm-font-body);
    color: var(--nm-white);
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
    position: relative;
    font-weight: 400;
}

/**
 * Cinematic Post Card Design - Version 2 (Text-First)
 */
.nm-post-card {
    background: #212121 !important;
    border-radius: 20px !important;
    padding: 20px !important;
    border: transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -1px 2px 13px 0px #0000009e;
}

/* Stretch inner column so actions sit on one baseline across the grid */
.nm-post-card>.nm-event-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.nm-post-card .nm-event-title {
    font-family: inherit;
    font-size: clamp(20px, 4.2vw, 22px);
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 5px;
    text-transform: none;
    letter-spacing: -0.5px;
}

.nm-post-card .nm-event-title__link {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nm-post-card .nm-event-title__link:hover,
.nm-post-card .nm-event-title__link:focus-visible {
    color: var(--nm-highlight-yellow) !important;
}

.nm-event-meta {
    font-family: inherit;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-weight: 400;
}

.nm-meta-sep {
    margin: 0 5px;
    opacity: 0.3;
}

.nm-event-thumb {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.nm-event-thumb img {
    width: 100%;
    height: auto;
    display: block;
}


.nm-event-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: var(--nm-highlight-yellow);
    margin-bottom: 25px;
}

.nm-event-actions {
    margin-top: auto;
}

.nm-post-card__footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nm-post-card__categories {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    line-height: normal;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 10px;
}

.nm-post-card__categories li {
    margin: 0;
}

.nm-post-card__cat-link {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #ffffff;
    background: #3C3C3C;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    text-transform: capitalize;
}

.nm-post-card__cat-link:hover,
.nm-post-card__cat-link:focus-visible {
    color: var(--nm-highlight-yellow);
    border-color: rgba(254, 255, 84, 0.35);
    background: rgba(254, 255, 84, 0.08);
}

.nm-post-card__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}

.nm-link-yellow {
    color: var(--nm-highlight-yellow);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.2px;
}

.nm-link-yellow:hover {
    text-decoration: underline;
}

.nm-dual-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nm-btn-dark {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nm-btn-dark:hover {
    background: rgba(255, 255, 255, 0.15);
}

.nm-btn-yellow {
    background: var(--nm-highlight-yellow);
    color: #000 !important;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.nm-btn-yellow:hover {
    background: #fff;
}

/* Chat Attachment Styles */
.nm-attachment-preview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nm-file-name {
    color: var(--nm-highlight-yellow);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.nm-remove-file {
    background: transparent;
    border: none;
    color: #ff4d4d;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
}

.nm-remove-file:hover {
    color: #ff3333;
}

.nm-attachment-trigger {
    transition: transform 0.2s ease;
}

.nm-attachment-trigger:hover {
    transform: scale(1.1);
    color: var(--nm-highlight-yellow) !important;
}

/* ---------- Responsive (plugin front-end) ---------- */

@media (max-width: 1024px) {
    .nm-group-title {
        font-size: clamp(28px, 5vw, 42px);
    }
}

@media (max-width: 768px) {

    .nm-team-page-template,
    .nm-agenda-page-template {
        padding: 0 0 40px 0;
    }

    .nm-home-template {
        padding-bottom: 40px;
    }

    .nm-home-widget-section {
        margin-top: 48px;
    }

    .nm-home-widget {
        padding: 22px 18px;
        margin-left: 0;
        margin-right: 0;
    }

    .nm-widget-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .nm-post-card {
        padding: 22px 18px !important;
    }

    .nm-form-card {
        padding: 32px 20px !important;
        border-radius: 22px !important;
    }

    .nm-team-photo {
        height: clamp(260px, 55vw, 360px);
    }

    .nm-blog-contact {
        padding: 22px 18px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .nm-file-name {
        max-width: min(200px, 55vw);
    }
}

@media (max-width: 480px) {
    .nm-agenda-footer .nm-btn-visit {
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}