/* =========================================================
   Focused Construction & Maintenance — Site Stylesheet
   Brand: Charcoal (#1C2128) + Amber (#E8871A) + White
   ========================================================= */

/* ----- CSS Variables ----- */
:root {
    --fcm-dark:        #1C2128;
    --fcm-dark-alt:    #252D38;
    --fcm-amber:       #E8871A;
    --fcm-amber-dark:  #C97010;
    --fcm-light:       #F5F5F0;
    --fcm-text:        #3A3A3A;
    --fcm-muted:       #6B7280;
    --fcm-border:      #E2E2DE;
    --fcm-radius:      6px;
    --fcm-radius-lg:   12px;
    --fcm-transition:  0.2s ease;
}

/* ----- Base ----- */
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--fcm-text); background: #fff; margin: 0; }

/* ----- Navbar ----- */
.fcm-navbar {
    background: var(--fcm-dark);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
/* Prevent Bootstrap's flex-wrap from ever pushing the toggler below the brand */
.fcm-navbar .container {
    flex-wrap: nowrap;
    align-items: center;
}
.fcm-navbar .nav-link {
    color: rgba(255,255,255,0.82) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.45rem 0.9rem;
    transition: color var(--fcm-transition);
}
.fcm-navbar .nav-link:hover, .fcm-navbar .nav-link.active {
    color: var(--fcm-amber) !important;
}
.fcm-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    /* flex-shrink allows the brand to compress; min-width:0 prevents overflow */
    flex-shrink: 1;
    min-width: 0;
}
.fcm-logo { height: 52px; width: auto; flex-shrink: 0; }
.fcm-brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.25;
    white-space: normal;
    /* Prevents the text node itself from forcing the container wider than available */
    min-width: 0;
}
.fcm-brand-accent { color: var(--fcm-amber); }
.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
    /* Never shrink — toggler must always be fully visible */
    flex-shrink: 0;
    margin-left: 0.5rem;
}
.navbar-toggler-icon { filter: invert(1); }

/* Tablet / collapsed navbar (< 992px) */
@media (max-width: 991.98px) {
    .fcm-brand { align-items: flex-start; }
    .fcm-logo { height: 42px; }
    .fcm-brand-text { font-size: 1.0rem; }
}

/* Small phones */
@media (max-width: 400px) {
    .fcm-logo { height: 34px; }
    .fcm-brand-text { font-size: 0.88rem; }
}

/* ----- Buttons ----- */
.fcm-btn-primary {
    background: var(--fcm-amber);
    color: #fff !important;
    border: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--fcm-radius);
    padding: 0.55rem 1.4rem;
    text-decoration: none;
    transition: background var(--fcm-transition), transform var(--fcm-transition);
}
.fcm-btn-primary:hover { background: var(--fcm-amber-dark); transform: translateY(-1px); }
.fcm-btn-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.7);
    font-weight: 600;
    border-radius: var(--fcm-radius);
    padding: 0.55rem 1.4rem;
    text-decoration: none;
    transition: all var(--fcm-transition);
}
.fcm-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.fcm-btn-secondary {
    background: var(--fcm-dark);
    color: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(255,255,255,0.15);
    font-weight: 500;
    border-radius: var(--fcm-radius);
    padding: 0.45rem 1rem;
    text-decoration: none;
    transition: background var(--fcm-transition);
}
.fcm-btn-secondary:hover { background: var(--fcm-dark-alt); }

/* ----- Hero ----- */
.fcm-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: url('/images/hero-bg.jpg') center/cover no-repeat, var(--fcm-dark);
}
.fcm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28,33,40,0.88) 0%, rgba(28,33,40,0.65) 100%);
}
.fcm-hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 1rem;
}
.fcm-hero-eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fcm-amber);
    font-weight: 600;
    margin-bottom: 1rem;
}
.fcm-hero-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.fcm-hero-sub {
    font-size: 1.15rem;
    opacity: 0.82;
    max-width: 600px;
    margin: 0 auto;
}

/* ----- Stats Bar ----- */
.fcm-stats-bar {
    background: var(--fcm-amber);
    padding: 2.5rem 0;
}
.fcm-stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--fcm-dark);
    line-height: 1;
}
.fcm-stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fcm-dark);
    opacity: 0.75;
    margin-top: 0.3rem;
}

/* ----- Sections ----- */
.fcm-section { padding: 5rem 0; }
.fcm-section-alt { background: var(--fcm-light); }
.fcm-section-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fcm-amber);
    margin-bottom: 0.6rem;
}
.fcm-section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--fcm-dark);
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

/* ----- Service Cards ----- */
.fcm-service-card, .fcm-service-card-detailed {
    background: #fff;
    border: 1px solid var(--fcm-border);
    border-radius: var(--fcm-radius-lg);
    padding: 1.75rem;
    transition: box-shadow var(--fcm-transition), transform var(--fcm-transition);
}
.fcm-service-card:hover, .fcm-service-card-detailed:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.fcm-section-alt .fcm-service-card-detailed { background: #fff; }
.fcm-service-icon {
    font-size: 1.8rem;
    color: var(--fcm-amber);
    margin-bottom: 0.85rem;
    display: block;
}
.fcm-service-cta-card {
    background: var(--fcm-dark) !important;
    color: #fff !important;
    border-color: var(--fcm-dark) !important;
}
.fcm-service-cta-card h5, .fcm-service-cta-card .text-muted { color: rgba(255,255,255,0.8) !important; }
.fcm-service-cta-card .fcm-service-icon { color: var(--fcm-amber); }

/* ----- Placeholder Images ----- */
.fcm-placeholder-img, .fcm-about-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--fcm-light);
    border: 2px dashed var(--fcm-border);
    border-radius: var(--fcm-radius-lg);
    color: var(--fcm-muted);
    font-size: 0.85rem;
}

/* Logo displayed in the About Us section */
.fcm-about-logo {
    max-width: 380px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .fcm-about-logo { max-width: 260px; }
}

/* ----- CTA Section ----- */
.fcm-cta-section {
    background: var(--fcm-dark);
    padding: 5rem 0;
}

/* ----- Page Header ----- */
.fcm-page-header {
    background: linear-gradient(135deg, var(--fcm-dark) 0%, var(--fcm-dark-alt) 100%);
    padding: 4.5rem 0;
    border-bottom: 3px solid var(--fcm-amber);
}
.fcm-page-header-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.fcm-page-header-sub {
    opacity: 0.75;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ----- Projects ----- */
.fcm-project-card {
    border-radius: var(--fcm-radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--fcm-border);
    cursor: pointer;
    transition: box-shadow var(--fcm-transition), transform var(--fcm-transition);
    position: relative;
}
.fcm-project-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.14); transform: translateY(-4px); }
.fcm-project-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--fcm-light);
}
.fcm-project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fcm-project-card:hover .fcm-project-thumb img { transform: scale(1.06); }
.fcm-project-thumb-placeholder { background: var(--fcm-light); }
.fcm-project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28,33,40,0.6);
    opacity: 0;
    transition: opacity var(--fcm-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.fcm-project-card:hover .fcm-project-overlay { opacity: 1; }
.fcm-project-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fcm-amber);
}
.fcm-project-info { padding: 1rem 1.1rem; }
.fcm-project-title { font-weight: 700; color: var(--fcm-dark); font-size: 0.95rem; }
.fcm-project-meta { font-size: 0.78rem; color: var(--fcm-muted); }
.fcm-project-pin-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--fcm-amber);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    z-index: 2;
}

/* ----- Project Modal ----- */
.fcm-modal { border: none; border-radius: var(--fcm-radius-lg); overflow: hidden; }
.fcm-modal-header {
    background: var(--fcm-dark);
    padding: 1.25rem 1.5rem;
    border-bottom: 3px solid var(--fcm-amber);
}
.fcm-project-carousel .carousel-item img,
.fcm-modal-single-img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}
.fcm-modal-img-placeholder { aspect-ratio: 4/3; background: var(--fcm-light); }
.fcm-modal-detail { padding: 2rem; }
.fcm-modal-dl dt { font-weight: 600; color: var(--fcm-dark); font-size: 0.85rem; }
.fcm-modal-dl dd { color: var(--fcm-muted); font-size: 0.85rem; }

/* ----- Contact ----- */
.fcm-input { border-color: var(--fcm-border); border-radius: var(--fcm-radius) !important; }
.fcm-input:focus { border-color: var(--fcm-amber); box-shadow: 0 0 0 3px rgba(232,135,26,0.15); }
.fcm-textarea { min-height: 140px; resize: vertical; }
.fcm-contact-info-box {
    background: var(--fcm-light);
    border-radius: var(--fcm-radius-lg);
    padding: 2rem;
    border: 1px solid var(--fcm-border);
}
.fcm-contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.fcm-contact-list li { display: flex; align-items: flex-start; gap: 0.9rem; }
.fcm-contact-list .bi { font-size: 1.1rem; color: var(--fcm-amber); margin-top: 0.1rem; flex-shrink: 0; }
.fcm-alert-success { background: #d1fadf; border: 1px solid #6fcf97; color: #1a5c35; border-radius: var(--fcm-radius); padding: 1rem 1.25rem; }

/* ----- Admin ----- */
.fcm-admin-table thead th { background: var(--fcm-dark); color: rgba(255,255,255,0.8); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; border: none; padding: 0.8rem 1rem; }
.fcm-admin-table td { padding: 0.9rem 1rem; border-color: var(--fcm-border); vertical-align: middle; }
.fcm-badge { background: var(--fcm-dark); color: rgba(255,255,255,0.85); font-size: 0.72rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.08em; }
.fcm-toggle .form-check-input:checked { background-color: var(--fcm-amber); border-color: var(--fcm-amber); }
.fcm-thumb-preview { position: relative; width: 80px; height: 80px; border-radius: var(--fcm-radius); overflow: hidden; border: 2px solid var(--fcm-border); }
.fcm-thumb-preview img { width: 100%; height: 100%; object-fit: cover; }
.fcm-thumb-remove { position: absolute; top: 2px; right: 2px; background: rgba(220,38,38,0.9); border: none; border-radius: 50%; color: #fff; width: 20px; height: 20px; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }

/* ----- Links ----- */
.fcm-link { color: var(--fcm-amber); text-decoration: none; }
.fcm-link:hover { color: var(--fcm-amber-dark); text-decoration: underline; }

/* ----- Footer ----- */
.fcm-footer { background: var(--fcm-dark); padding: 3.5rem 0 1.5rem; color: rgba(255,255,255,0.7); }
.fcm-footer p,
.fcm-footer .fcm-footer-body { color: rgba(255,255,255,0.65) !important; }
.fcm-footer-heading { color: #fff; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.fcm-footer-link { color: rgba(255,255,255,0.6); text-decoration: none; transition: color var(--fcm-transition); }
.fcm-footer-link:hover { color: var(--fcm-amber); }
.fcm-footer li { margin-bottom: 0.4rem; }
.fcm-footer-divider { border-color: rgba(255,255,255,0.1); margin: 2rem 0 1.25rem; }

/* ----- Prose (Privacy etc.) ----- */
.fcm-prose h5 { font-weight: 700; color: var(--fcm-dark); margin-top: 2rem; margin-bottom: 0.5rem; }
.fcm-prose p { color: var(--fcm-muted); line-height: 1.75; }

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .fcm-hero { min-height: 60vh; }
    .fcm-section { padding: 3.5rem 0; }
    .fcm-page-header { padding: 3rem 0; }
}

.btn:focus, .btn:active:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(232,135,26,0.2);
}

/* ----- Cookie Consent Banner ----- */
#cookieBanner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: var(--fcm-dark);
    border-bottom: 3px solid var(--fcm-amber);
    padding: 0.85rem 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
#cookieBanner.fcm-cookie-hiding {
    opacity: 0;
    transform: translateY(-100%);
}
.fcm-cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.fcm-cookie-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    flex: 1 1 300px;
    margin: 0;
}
.fcm-cookie-text a {
    color: var(--fcm-amber);
    text-decoration: underline;
}
.fcm-cookie-text a:hover {
    color: var(--fcm-amber-dark);
}
.fcm-cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ----- Description Textarea (Admin) ----- */
.fcm-textarea-lg {
    min-height: 220px;
    resize: vertical;
    line-height: 1.6;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .fcm-textarea-lg { min-height: 180px; }
}

/* ----- Image Manager (Admin Edit Project) ----- */
.fcm-image-manager {
    border: 1px solid var(--fcm-border);
    border-radius: var(--fcm-radius-lg);
    overflow: hidden;
}
.fcm-image-manager-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--fcm-dark);
    color: #fff;
    font-size: 0.9rem;
}
.fcm-image-count {
    font-size: 0.75rem;
    background: var(--fcm-amber);
    color: var(--fcm-dark);
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
}

/* Existing image grid */
.fcm-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1px;
    background: var(--fcm-border);
    border-bottom: 1px solid var(--fcm-border);
}
@media (max-width: 480px) {
    .fcm-image-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}
.fcm-image-tile {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--fcm-light);
    overflow: hidden;
}
.fcm-image-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.fcm-image-tile:hover img { transform: scale(1.04); }
.fcm-image-tile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 33, 40, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.fcm-image-tile:hover .fcm-image-tile-overlay,
.fcm-image-tile:focus-within .fcm-image-tile-overlay { opacity: 1; }
.fcm-image-remove-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    background: rgba(220, 38, 38, 0.9);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--fcm-radius);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background 0.15s ease;
}
.fcm-image-remove-btn:hover { background: rgb(185, 28, 28); }
.fcm-image-remove-btn .bi { font-size: 1.1rem; }

/* Upload area */
.fcm-upload-area {
    position: relative;
    padding: 1.5rem;
    background: var(--fcm-light);
    transition: background 0.2s ease;
}
.fcm-upload-area--active { background: rgba(232, 135, 26, 0.08); }
.fcm-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.fcm-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1.5rem;
    border: 2px dashed var(--fcm-border);
    border-radius: var(--fcm-radius);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s ease;
    min-height: 120px;
}
.fcm-upload-area--active .fcm-upload-label,
.fcm-upload-area:hover .fcm-upload-label { border-color: var(--fcm-amber); }
.fcm-upload-icon { font-size: 2rem; color: var(--fcm-amber); }
.fcm-upload-title { font-weight: 600; color: var(--fcm-dark); font-size: 0.9rem; }
.fcm-upload-hint { font-size: 0.78rem; color: var(--fcm-muted); }

/* New image preview strip (before submit) */
.fcm-upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--fcm-border);
}
.fcm-upload-preview-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    width: 90px;
}
.fcm-upload-preview-tile img {
    width: 90px;
    height: 68px;
    object-fit: cover;
    border-radius: var(--fcm-radius);
    border: 2px solid var(--fcm-amber);
}
.fcm-upload-preview-name {
    font-size: 0.65rem;
    color: var(--fcm-muted);
    text-align: center;
    word-break: break-all;
    max-width: 90px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.fcm-upload-preview-size {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--fcm-amber);
}

/* ----- Admin — Project Status Badges ----- */
.fcm-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    white-space: nowrap;
}
.fcm-status-live {
    background: #d1fadf;
    color: #1a5c35;
}
.fcm-status-live .bi { font-size: 0.45rem; }
.fcm-status-draft {
    background: #f0f0f0;
    color: #6b7280;
}
.fcm-status-draft .bi { font-size: 0.45rem; }

/* Draft rows are visually de-emphasised */
.fcm-row-draft td { opacity: 0.6; }
.fcm-row-draft td:first-child,
.fcm-row-draft td:last-child { opacity: 1; }

.fcm-admin-legend { padding: 0.4rem 0; }

/* ----- Admin — Publish Toggle Row (EditProject) ----- */
.fcm-publish-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    background: var(--fcm-light);
    border: 1px solid var(--fcm-border);
    border-radius: var(--fcm-radius);
    padding: 0.9rem 1.1rem;
}
.fcm-publish-toggle-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

/* ----- Admin — Mobile Project Management Cards ----- */
.fcm-admin-mobile-list {
    display: grid;
    gap: 0.85rem;
}
.fcm-admin-mobile-card {
    background: #fff;
    border: 1px solid var(--fcm-border);
    border-radius: var(--fcm-radius-lg);
    padding: 0.9rem;
}
.fcm-admin-mobile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.55rem;
}
.fcm-admin-mobile-pin {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #8a5a00;
    background: #fff3cd;
    border-radius: 50px;
    padding: 0.15rem 0.55rem;
    white-space: nowrap;
}
.fcm-admin-mobile-title {
    margin: 0 0 0.55rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--fcm-dark);
    line-height: 1.35;
}
.fcm-admin-mobile-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 0.65rem;
    margin-bottom: 0.75rem;
    font-size: 0.82rem;
    color: var(--fcm-muted);
}
.fcm-admin-mobile-meta strong {
    color: var(--fcm-dark);
    font-weight: 600;
}
.fcm-admin-mobile-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}
.fcm-admin-mobile-actions form {
    margin: 0;
}
.fcm-admin-mobile-btn {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.6rem 0.9rem;
    font-weight: 600;
}

@media (max-width: 430px) {
    .fcm-admin-mobile-meta {
        grid-template-columns: 1fr;
    }
}


