﻿

/* Title + back button row */
.btn-title-cnt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

    /* Back button */
    .btn-title-cnt .btn.btn-outline-secondary {
        border-radius: 999px;
        border-color: rgba(148, 163, 184, 0.8);
        color: #022c22;
        background: linear-gradient(135deg, #f9fafb, #e5e7eb);
        padding: 0.3rem 0.7rem;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
    }

        .btn-title-cnt .btn.btn-outline-secondary:hover {
            background: linear-gradient(135deg, #e5e7eb, #d1d5db);
            border-color: rgba(55, 65, 81, 0.9);
        }

/* Content section title */
#secTit {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--tt-green-main);
}

/* Main content card where AJAX loads stuff */
#main-content {
    margin-top: 0;
    /*box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.8);*/
    padding: 1.5rem;
    padding-top: 0;
    border: none !important;
    border-color: transparent;
    outline: none;
    position: relative; /* ok */
    height: fit-content; /* important */
    min-height: auto;
    max-height: none;
    overflow: visible;
}

    /* Default placeholder text */
    #main-content p.text-muted {
        color: var(--tt-text-muted) !important;
        font-size: 0.95rem;
    }
