
/* ======================================== */
/* --- Base & Layout --- */
/* ======================================== */
/* --- Card List Layout (Using Flexbox) --- */
.controle-card-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 20px;
    padding: 15px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* --- Individual Card Styling --- */
.controle-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* width: 300px; */ /* Using flex properties below for responsiveness */
  flex: 0 1 300px; /* Prevents last row items from growing too large */
  /* max-width: 300px; */ /* Enforce a max if flex-basis isn't strict enough for your layout, but usually flex-grow:0 is key */
}

.controle-card-header {
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.controle-card-header .info-item {
    font-size: 0.9em;
    color: #555;
}

.controle-card-header .info-item strong {
    color: #333;
}

.controle-card-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-visible-title {
  order: -1;
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: bold;
  color: #737373;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.4em * 2);
}

.image-preview-container {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1.4142;
}

.image-preview-container img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.image-preview-container a {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: 100%;
   line-height: 0;
   box-shadow: 0px 0px 5px #bdbdbd;
}

.image-preview-container .fielduploadsubmission,
.image-preview-container .fileuploadsubmission {
   margin: 0;
   padding: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: 100%;
}

.controle-card-info {
    margin-top: auto;
}

.controle-card-info .chapitres {
    margin: 10px 0 0 0;
    font-size: 0.95em;
    color: #333;
    line-height: 1.4;
}

.controle-card-info .chapitres strong {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.controle-card-info .chapitres .pill.pill-chapitres {
    margin-right: 5px;
    margin-bottom: 5px;
}

.controle-card-footer {
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    font-size: 0.85em;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 40px;
}

.controle-card-footer .actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.controle-card-footer .actions a,
.controle-card-footer .actions span {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.controle-card-footer .actions a img,
.controle-card-footer .actions span img {
    margin-right: 3px;
    height: 1em;
    width: 1em;
}

.controle-card-footer .entry-meta {
   text-align: right;
   flex-grow: 1;
}

/* ======================================== */
/* --- Pill Styling --- */
/* ======================================== */
.pill {
    display: inline-block;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85em;
    border: 1px solid;
    white-space: nowrap;
    margin-bottom: 3px;
    margin-right: 3px;
}
.pill-niveau { background-color: white; border-color: #f59c27; color: #f59c27; }
.pill-chapitres { background-color: white; border-color: #0e5c4b; color: #0e5c4b; }
.pill-date { background-color: white; border-color: #39b8b0; color: #39b8b0; }
.pill-corrige {
    background-color: #f1a137;
    color: white;
    border-color: #f1a137;
    font-size: 0.8em;
    padding: 3px 8px;
    vertical-align: middle;
}

/* ======================================== */
/* --- Filter Controls --- */
/* ======================================== */
#filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 15px 0 15px;
    margin-bottom: 15px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    box-sizing: border-box;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.filter-group label {
    font-size: 0.9em;
    font-weight: bold;
    color: #555;
}
.filter-group select,
.filter-group input[type="text"] {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95em;
    min-width: 200px;
}
.custom-filter-controls {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.filter-row {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.filter-row:last-child {
    margin-bottom: 0;
}
.filter-row strong {
    margin-right: 10px;
    white-space: nowrap;
}
.filter-button {
    padding: 6px 12px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #0e5c4b;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    font-size: 0.9em;
    white-space: nowrap;
}
.filter-button:hover {
    background-color: #eee;
    border-color: #aaa;
}
.filter-button.active {
    background-color: #0e5c4b;
    color: #fff;
    border-color: #0e5c4b;
    font-weight: bold;
}
.chapter-buttons-container {
    min-height: 30px;
}
#cosmetic-search-button {
  background-color: #0e5c4b;
  font-weight: bolder;
  font-size: inherit;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
}
#cosmetic-reset-button {
  display: none;
}

/* ======================================== */
/* --- Moodle Specific Hiding & Adjustments --- */
/* ======================================== */
#data_adv_form {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden !important;
}
#advancedcheckbox {
    display:none;
}
#page-mod-data-view .drawer-left:not(#theme_boost-drawers-primary) {
    display: none !important;
}
#page-mod-data-view #page {
    padding-left: 0 !important;
    margin-left: 0 !important;
}
label[for="pref_search"],
#pref_search,
#reg_search {
    display: none !important;
}

/* ============================================================================= */
/* --- Custom Autocomplete Search & CTA Button Sizing --- */
/* ============================================================================= */

/* --- CTA Button (Reference for Sizing) --- */
.grand-oral-cta-button {
    background-color: #f1a137; /* YOUR ORANGE */
    border-color: #e08e0b;
    color: #ffffff;
    padding: 12px 28px;        /* Base padding */
    font-size: 1.15em;         /* Base font size */
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    /* line-height: normal; /* Or specify if needed */
}
.grand-oral-cta-button:hover,
.grand-oral-cta-button:focus {
    background-color: #e08e0b;
    border-color: #c87f0a;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}
.grand-oral-cta-button .fas {
    font-size: 1.1em;
}

/* --- Custom Autocomplete Search Container --- */
#custom-search-container,
#custom-search-container-single {
    max-width: 1400px;
    margin: 0 auto 25px auto; /* Increased bottom margin */
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
}

#custom-search-container .autoComplete_wrapper,
#custom-search-container-single .autoComplete_wrapper {
    display: block !important;
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* --- Input Styling (ADJUSTED FOR SIZE) --- */
#custom-search-input,
#custom-search-input-single {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    /* Match CTA button's vertical padding and font-size */
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 45px; /* Increased to accommodate larger icon and spacing */
    padding-right: 20px;/* Increased right padding */
    font-size: 1.15em;   /* Match CTA button font-size */
    /* line-height: normal; /* Match CTA button's line height or set explicitly */
    color: #333;
    border: 1px solid #ccc;
    border-radius: 50px; /* Match CTA button's border-radius */
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23777' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E"); /* Slightly larger icon */
    background-repeat: no-repeat;
    background-position: 18px center; /* Adjust icon position */
    background-size: 20px 20px;   /* Larger icon */
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    box-sizing: border-box;
    height: auto; /* Allow height to be determined by padding and font-size */
}

#custom-search-input:focus,
#custom-search-input-single:focus {
    outline: none;
    border-color: #0e5c4b;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1), 0 0 0 3px rgba(14, 92, 75, 0.25); /* Slightly larger focus ring */
}

#custom-search-input::placeholder,
#custom-search-input-single::placeholder {
  color: #0e5c4bb2 !important;
  opacity: 1;
  font-weight: 600; /* Match CTA button's font-weight */
}
/* Vendor prefixes for placeholder */
#custom-search-input::-webkit-input-placeholder,
#custom-search-input-single::-webkit-input-placeholder { color: #0e5c4bb2 !important; opacity: 1; font-weight: 600; }
#custom-search-input::-moz-placeholder,
#custom-search-input-single::-moz-placeholder { color: #0e5c4bb2 !important; opacity: 1; font-weight: 600; }
#custom-search-input:-ms-input-placeholder,
#custom-search-input-single:-ms-input-placeholder { color: #0e5c4bb2 !important; font-weight: 600; }
#custom-search-input::-ms-input-placeholder,
#custom-search-input-single::-ms-input-placeholder { color: #0e5c4bb2 !important; font-weight: 600; }

/* Autocomplete Dropdown List Styling (no changes needed for sizing here) */
#custom-search-container .autoComplete_wrapper > ul,
#custom-search-container-single .autoComplete_wrapper > ul {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 1000; margin-top: 5px;
    list-style: none; margin: 0; padding: 0; background-color: #fff; border: 1px solid #ccc;
    border-radius: 4px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); max-height: 300px; overflow-y: auto; box-sizing: border-box;
}
#custom-search-container .autoComplete_wrapper > ul > li,
#custom-search-container-single .autoComplete_wrapper > ul > li {
    padding: 8px 12px; cursor: pointer; border-bottom: 1px solid #eee; font-size: 0.95em; color: #333333;
}
#custom-search-container .autoComplete_wrapper > ul > li:last-child,
#custom-search-container-single .autoComplete_wrapper > ul > li:last-child { border-bottom: none; }
#custom-search-container .autoComplete_wrapper > ul > li:hover,
#custom-search-container-single .autoComplete_wrapper > ul > li:hover,
#custom-search-container .autoComplete_wrapper > ul > li.autoComplete_selected,
#custom-search-container-single .autoComplete_wrapper > ul > li.autoComplete_selected {
    background-color: #f0f0f0; color: #0e5c4b;
}
#custom-search-container .autoComplete_wrapper > ul > li mark,
#custom-search-container-single .autoComplete_wrapper > ul > li mark {
    background-color: transparent; color: #f59c27; font-weight: bold; padding: 0;
}


/* ======================================== */
/* --- Single View Specific --- */
/* ======================================== */
/* ... (Keep your existing single view CSS, no changes needed here for this request) ... */
.database-backlink,
.fiche-title-area,
.fiche-controle-container,
.mod_data_fastcomments_wrapper,
.custom-search-container-singleview {
    max-width: 1200px; margin-left: auto; margin-right: auto; box-sizing: border-box;
}
.database-backlink, .fiche-title-area, .mod_data_fastcomments_wrapper, .custom-search-container-singleview {
    padding-left: 15px; padding-right: 15px;
}
.database-backlink { margin-bottom: 20px; padding-top: 10px; }
.fiche-title-area { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; padding-bottom: 10px; position: relative; }
.fiche-title-wrapper { display: flex; align-items: center; gap: 10px; flex-grow: 1; margin-right: 15px; flex-wrap: wrap; }
.fiche-title { font-size: 1.8em; color: #333; margin: 0; display: inline; }
.fiche-actions-haut { font-size: 0.9em; flex-shrink: 0; }
.fiche-controle-container { padding: 15px; border: 1px solid #dee2e6; border-radius: 5px; margin-bottom: 30px; background-color: white; }
.fiche-metadata-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.fiche-description { margin-bottom: 25px; padding: 15px; background-color: #fdfdfd; border: 1px solid #eee; border-radius: 4px; line-height: 1.6; color: #555; display: flow-root; }
.fiche-description p { margin-bottom: 10px; }
.fiche-description p:last-child { margin-bottom: 0; }
.pdf-thumbnail-float { float: right; width: 35%; margin-left: 20px; margin-bottom: 10px; margin-top: -60px; position: relative; z-index: 10; background-color: #fff; border: 1px solid #ccc; box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2); border-radius: 4px; overflow: hidden; line-height: 0; }
.pdf-thumbnail-float:empty { display: none; }
.pdf-thumbnail-float img { display: block; width: 100%; height: auto; border-radius: 4px; }
.pdf-thumbnail-float a { display: block; line-height: 0; }
.tabs-and-actions-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0; padding-bottom: 10px; border-bottom: 1px solid #eee; flex-wrap: wrap; }
.desktop-tabs { margin-bottom: -11px; margin-right: 15px; }
.desktop-tabs .tab { background-color: transparent; border: none; border-bottom: 2px solid transparent; padding: 10px 15px; cursor: pointer; font-size: 1em; color: #f59c27; transition: all 0.2s ease-in-out; font-weight: bold; position: relative; }
.desktop-tabs .tab:hover { background-color: #f8f9fa; border-bottom-color: #ccc; color: #cf821f; }
.desktop-tabs .tab.active { font-weight: bold; color: #0e5c4b; border-bottom: 2px solid #0e5c4b; background-color: white; z-index: 1; }
.active-download-button-area { flex-shrink: 0; white-space: nowrap; display: flex; align-items: center; gap: 10px; }
#active-pdf-download-button.whitebutton { display: inline-block; padding: 6px 12px; background-color: #f59c27; color: white; text-decoration: none; border-radius: 4px; font-weight: bold; font-size: 0.9em; border: 1px solid #f59c27; transition: background-color 0.2s ease, border-color 0.2s ease; }
#active-pdf-download-button.whitebutton:hover { background-color: #ec971f; border-color: #e08e0b; }
#active-pdf-error { color: #dc3545; font-size: 0.9em; }
.fiche-controle-contenu { margin-top: 20px; }
.fiche-controle-colonne.onglet { flex-direction: column; padding: 15px; border: 1px solid #eee; border-radius: 4px; background-color: #fff; width: 100%; box-sizing: border-box; }
.adobe-viewer-container { width: 100%; aspect-ratio: 1 / 1.414; border: 1px solid #ccc; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.adobe-viewer-message { color: #666; font-style: italic; padding: 20px; text-align: center; }
.fiche-controle-footer { margin-top: 25px; padding-top: 15px; border-top: 1px solid #eee; font-size: 0.8em; color: #6c757d; text-align: center; }
.mod_data_fastcomments_wrapper { margin-top: 30px; margin-bottom: 30px; }

/* Styles for the always-visible feedback section on single view */
.feedback-section-visible { margin-top: 30px; margin-bottom: 25px; }
#feedback-content-visible { padding: 20px; border: 1px solid #0e5c4b; border-radius: 8px; background-color: #f0f8f7; color: #333; line-height: 1.6; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
#feedback-content-visible h4 { color: #0b4f48; margin-top: 0; margin-bottom: 12px; font-size: 1.25em; border-bottom: 1px solid #d0e6e3; padding-bottom: 8px; }
#feedback-content-visible h4 .fas { margin-right: 8px; }
.feedback-section-visible .text-muted { padding: 15px; background-color: #f8f9fa; border: 1px dashed #ddd; border-radius: 5px; text-align: center; }

/* ===================================== */
/* --- Grand Oral Intro Section (Option 3: Your Colors, Bigger) --- */
/* ===================================== */
.grand-oral-intro-section {
    text-align: center; padding: 40px 20px 50px 20px; background-color: transparent;
    margin-bottom: 40px; max-width: 1500px; margin-left: auto; margin-right: auto; box-sizing: border-box; position: relative;
}
.grand-oral-main-title {
    font-size: 3em; color: #0e5c4b; margin-bottom: 15px; font-weight: 700; text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}
.grand-oral-subtitle {
    font-size: 1.4em; color: #555; margin-bottom: 40px; max-width: 850px; margin-left: auto; margin-right: auto; line-height: 1.65;
}
.grand-oral-explanation-points {
    display: flex; justify-content: space-around; align-items: flex-start; flex-wrap: wrap;
    gap: 30px; max-width: 1200px; margin: 0 auto;
}
.explanation-point {
    flex: 1 1 300px; display: flex; align-items: center; text-align: left; padding: 15px 10px;
}
.explanation-icon {
    font-size: 2.8em; color: #f1a137; margin-right: 20px; min-width: 45px; text-shadow: 0px 1px 2px rgba(0,0,0,0.1);
}
.explanation-point span { font-size: 1.1em; color: #333; line-height: 1.6; }
.explanation-point span strong { color: #0e5c4b; font-size: 1.15em; display: block; margin-bottom: 5px; }

.grand-oral-cta-container { margin-top: 35px; text-align: center; }


/* ======================================== */
/* --- Responsive Adjustments --- */
/* ======================================== */
@media(max-width:991px) and (min-width:768px){
    .grand-oral-main-title { font-size: 2.6em; }
    .grand-oral-subtitle { font-size: 1.3em; }
    .explanation-icon { font-size: 2.2em; }
    .explanation-point span { font-size: 1em; }
    .grand-oral-explanation-points { gap: 15px; max-width: 900px; }
}

@media(max-width:767px){
    .desktop-tabs{ display:none; }
    .fiche-controle-colonne.onglet{ display:flex !important; width: 100%; flex-direction: column; margin-bottom: 15px; }
    .fiche-controle-colonne.onglet:last-child { margin-bottom: 0; }
    .tabs-and-actions-header { flex-direction: column; align-items: flex-start; border-bottom: none; padding-bottom: 0; margin-bottom: 15px; }
    .active-download-button-area { margin-top: 10px; }
    .controle-card-list, #filter-controls, .custom-filter-controls, #custom-search-container, #custom-search-container-single { max-width: 100%; padding-left: 10px; padding-right: 10px; }
    .database-backlink, .fiche-title-area, .fiche-controle-container, .mod_data_fastcomments_wrapper, .custom-search-container-singleview { max-width: 100%; padding-left: 10px; padding-right: 10px; }
    .pdf-thumbnail-float { float: none; width: auto; max-width: 60%; display: block; margin: 15px auto; position: static; z-index: auto; }
    .fiche-description { display: block; }
    #page-mod-data-view #page { padding-left: 0 !important; margin-left: 0 !important; }

    .grand-oral-explanation-points { display: none; }
    .grand-oral-main-title { font-size: 2.2em; }
    .grand-oral-subtitle { font-size: 1.2em; margin-bottom: 30px; }
    .grand-oral-intro-section { padding: 25px 15px 30px 15px; }
    .grand-oral-cta-container { margin-top: 25px; }
    .grand-oral-cta-button { padding: 10px 22px; font-size: 1.05em; }
    #custom-search-input, #custom-search-input-single {
        /* Slightly smaller for mobile to better match button */
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 1.05em; /* Match mobile CTA button */
    }
}

@media (max-width: 680px) {
    .controle-card {
        flex-basis: calc(100% - 10px);
        flex-grow: 0;
    }
    .controle-card-list {
        justify-content: center; padding-left: 5px; padding-right: 5px; gap: 10px;
    }
    .pdf-thumbnail-float { max-width: 70%; }
    #custom-search-container .autoComplete_wrapper, #custom-search-container-single .autoComplete_wrapper { max-width: none; }
}

@media (max-width: 480px) {
    .fiche-title { font-size: 1.5em; }
    .fiche-title-area { flex-direction: column; align-items: flex-start; }
    .fiche-title-wrapper { margin-right: 0; margin-bottom: 10px; gap: 5px; }
    #filter-controls { gap: 10px; }
    .filter-group select, .filter-group input[type="text"] { min-width: 0; width: 100%; }
    .filter-group { width: 100%; }
    .pill { font-size: 0.8em; padding: 4px 8px; }
    .pill-corrige { font-size: 0.75em; padding: 2px 6px; }
    .custom-filter-controls { padding: 10px; }
    .filter-button { padding: 5px 10px; font-size: 0.85em; }
    .mod_data_fastcomments_wrapper { margin-top: 20px; margin-bottom: 20px; padding-left: 5px; padding-right: 5px; }
    .pdf-thumbnail-float { max-width: 85%; margin-left: auto; margin-right: auto; }
    #custom-search-input, #custom-search-input-single {
        padding: 8px 12px 8px 35px; font-size: 1em; background-position: 12px center;
    }
    #custom-search-container .autoComplete_wrapper > ul, #custom-search-container-single .autoComplete_wrapper > ul { left: 0px; right: 0px; }
}

/* In your main CSS file (e.g., the one loaded via <link rel="stylesheet" type="text/css" href="https://galilee.ac/mod/data/css.php?d=9" /> or your theme's custom CSS) */



/* Styling for the toggle button (move inline styles here) */
#toggle-feedback-button {
    background-color: #f59c27; /* Orange */
    color: white;
    border: 1px solid #f59c27;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease; /* For smooth hover */
    /* Ensure Moodle's default .btn styles don't interfere too much, or add more specific resets if needed */
}

#toggle-feedback-button:hover {
    background-color: #e08e0b; /* Darker orange for hover */
    border-color: #e08e0b;
}

/* Optional: Style for when the button is active/pressed, if desired */
#toggle-feedback-button:active {
    background-color: #c87a0a;
    border-color: #c87a0a;
}

  /* Style the feedback container to stand out */
  .feedback-box-styled {
    background-color: #f5f5f5;       /* very light grey */
    font-family: Georgia, serif;     /* a classic “feedback” feel */
    color: #333;                     /* dark enough for readability */
    padding: 1rem;                   /* some breathing room */
    border-left: 4px solid #0e5c4b;  /* a colored accent stripe */
    border-radius: 0.25rem;          /* soften the corners */
    margin-bottom: 1.5rem;           /* space below */
  }

  /* (Optional) Tweak the heading inside */
  .feedback-heading-styled {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

















