/**
 * Portal – Feste Farben (nur Kundenportal)
 * Überschreibt Theme-Dynamik nur innerhalb .portal.
 * Rechte Seitenleiste: Schwarz mit weißer Schrift.
 */

/* =============================================================================
   RECHTE SEITENLEISTE – feste Farben
   ============================================================================= */

.portal .portal-sidebar-card {
    background-color: #000 !important;
    color: #fff;
    border-color: #333;
}

.portal .portal-sidebar-card .card-body {
    background-color: #000 !important;
    color: #fff;
}

/* Links in der Sidebar */
.portal .portal-sidebar-card .portal-sidebar-link,
.portal .portal-sidebar-card .nav-link {
    color: #fff !important;
}

.portal .portal-sidebar-card .portal-sidebar-link:hover,
.portal .portal-sidebar-card .nav-link:hover {
    color: #ccc !important;
}

.portal .portal-sidebar-card .nav-link.active {
    color: #fff !important;
    font-weight: 600;
}

/* Überschriften (h6) in der Sidebar */
.portal .portal-sidebar-card h6 {
    color: rgba(255, 255, 255, 0.85);
}

/* Gedämpfter Text (z. B. „Offene Rechnungen“) */
.portal .portal-sidebar-card .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Betrags-Box (bg-light) */
.portal .portal-sidebar-card .bg-light {
    background-color: #1a1a1a !important;
    border-color: #444 !important;
    color: #fff;
}

.portal .portal-sidebar-card .bg-light .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Betrag offen (warning) / keine offenen (success) auf dunklem Grund */
.portal .portal-sidebar-card .text-warning {
    color: #ffc107 !important;
}

.portal .portal-sidebar-card .text-success {
    color: #75c575 !important;
}

/* Trennlinien */
.portal .portal-sidebar-card hr {
    border-color: #444;
    opacity: 1;
}

/* Logout-Button in Gold (wie Portal-Primary-Buttons) */
.portal .portal-sidebar-card .btn-danger {
    background-color: #c9a227;
    border-color: #c9a227;
    color: #1a1a1a !important;
}

.portal .portal-sidebar-card .btn-danger:hover {
    background-color: #b8941e;
    border-color: #b8941e;
    color: #1a1a1a !important;
}

/* =============================================================================
   OPTION A – Gesamtes Portal dunkel (wie Seitenleiste)
   Schrift, Infotexte (Alerts) und Buttons gut lesbar und erkennbar.
   ============================================================================= */

/* Wrapper: ganzer Portal-Bereich dunkel – überschreibt Template-Secondary */
.main-content-card:has(.portal) {
    background-color: #0d0d0d !important;
    border-color: #333;
    color: #eee !important;
}

.main-content-card:has(.portal) .card-body {
    background-color: #0d0d0d !important;
    color: #eee !important;
}

/* ----- Hauptspalte (col-lg-8): Basis ----- */
.portal .col-lg-8 {
    color: #eee;
}

.portal .col-lg-8 p,
.portal .col-lg-8 li,
.portal .col-lg-8 dt,
.portal .col-lg-8 dd,
.portal .col-lg-8 .form-label {
    color: #eee;
}

.portal .col-lg-8 h1,
.portal .col-lg-8 h2,
.portal .col-lg-8 h3,
.portal .col-lg-8 h4,
.portal .col-lg-8 h5,
.portal .col-lg-8 h6 {
    color: #fff !important;
}

.portal .col-lg-8 .text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Template-Secondary/-Muted im Portal ausblenden – kein Grau auf dunklem Grund */
.portal .col-lg-8 .text-secondary {
    color: rgba(255, 255, 255, 0.8) !important;
}

.main-content-card:has(.portal) .text-secondary,
.main-content-card:has(.portal) .text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Willkommensnachricht (Portal-Dashboard) */
.portal .col-lg-8 .portal-welcome-message {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem;
}

/* Links im Hauptinhalt gut sichtbar */
.portal .col-lg-8 a:not(.btn) {
    color: #7dd3fc;
}

.portal .col-lg-8 a:not(.btn):hover {
    color: #b8e6fd;
    text-decoration: underline;
}

.portal .col-lg-8 .bg-light {
    background-color: #1a1a1a !important;
    color: #eee !important;
    border-color: #333 !important;
}

/* Breadcrumbs im Portal: Links hell, aktive Seite gold */
.portal .col-lg-8 .breadcrumb-item,
.portal .col-lg-8 .breadcrumb-item a {
    color: #fff !important;
}

.portal .col-lg-8 .breadcrumb-item a:hover {
    color: #e5e5e5 !important;
}

.portal .col-lg-8 .breadcrumb-item.active {
    color: #c9a227 !important;
    font-weight: 600;
}

.portal .col-lg-8 .breadcrumb-item.active,
.portal .col-lg-8 .breadcrumb-item.active * {
    color: #c9a227 !important;
}

.portal .col-lg-8 .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* ----- Formulare: vollständig dunkles Portal-Theme ----- */
.portal .col-lg-8 .form-label,
.portal .col-lg-8 .form-check-label {
    color: #fff;
    font-weight: 600;
}

.portal .col-lg-8 .form-text {
    color: rgba(255, 255, 255, 0.72) !important;
}

.portal .col-lg-8 .form-control,
.portal .col-lg-8 .form-select,
.portal .col-lg-8 .input-group-text {
    background-color: #161616 !important;
    border-color: #444 !important;
    color: #fff !important;
}

.portal .col-lg-8 .form-control::placeholder,
.portal .col-lg-8 textarea.form-control::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.portal .col-lg-8 .form-control:focus,
.portal .col-lg-8 .form-select:focus {
    background-color: #1b1b1b !important;
    border-color: #c9a227 !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.2);
}

.portal .col-lg-8 .form-control:disabled,
.portal .col-lg-8 .form-control[readonly],
.portal .col-lg-8 .form-select:disabled {
    background-color: #121212 !important;
    border-color: #333 !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

.portal .col-lg-8 .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.75)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.portal .col-lg-8 .input-group-text {
    color: rgba(255, 255, 255, 0.78) !important;
}

.portal .col-lg-8 .form-check-input {
    background-color: #161616;
    border-color: #666;
}

.portal .col-lg-8 .form-check-input:checked {
    background-color: #c9a227;
    border-color: #c9a227;
}

.portal .col-lg-8 .form-check-input:focus {
    border-color: #c9a227;
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.2);
}

/* ----- Cards im Hauptinhalt ----- */
.portal .col-lg-8 .card {
    background-color: #111 !important;
    border-color: #333;
    color: #eee;
}

.portal .col-lg-8 .card-header.bg-light {
    background-color: #1a1a1a !important;
    border-bottom-color: #333;
    color: #fff !important;
}

.portal .col-lg-8 .card-header h5,
.portal .col-lg-8 .card-header .mb-0 {
    color: #fff !important;
}

.portal .col-lg-8 .card-body {
    background-color: #111 !important;
    color: #eee !important;
}

.portal .col-lg-8 .card-body p,
.portal .col-lg-8 .card-body strong {
    color: #eee;
}

/* Einzelblöcke (z. B. Rechnungs-Karten) */
.portal .col-lg-8 .border.rounded {
    background-color: #1a1a1a !important;
    border-color: #444 !important;
    color: #eee;
}

.portal .col-lg-8 .border.rounded .text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

.portal .col-lg-8 .nav-tabs {
    border-bottom-color: #333;
    gap: 0.35rem;
}

.portal .col-lg-8 .nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.78);
    background-color: #161616;
    border: 1px solid #333;
    border-bottom-color: #333;
}

.portal .col-lg-8 .nav-tabs .nav-link:hover {
    color: #fff;
    background-color: #1d1d1d;
    border-color: #444;
}

.portal .col-lg-8 .nav-tabs .nav-link.active {
    color: #c9a227 !important;
    background-color: #111 !important;
    border-color: #444 #444 #111 !important;
    font-weight: 600;
}

.portal .col-lg-8 .tab-content {
    background-color: #111;
    border: 1px solid #333;
    border-top: 0;
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1.25rem;
}

.portal .col-lg-8 .tab-pane,
.portal .col-lg-8 .tab-pane p,
.portal .col-lg-8 .tab-pane li {
    color: #eee;
}

/* ----- Booking: Select Service / Produkte – Karten lesbar, klickbar ----- */
.portal .col-lg-8 .booking-service-select .booking-option-link {
    color: inherit;
}

.portal .col-lg-8 .booking-service-select .booking-option-link:hover {
    color: inherit;
    text-decoration: none;
}

.portal .col-lg-8 .booking-option-card {
    background-color: #1a1a1a !important;
    border: 1px solid #444;
    border-radius: 8px;
    color: #eee;
    transition: background-color 0.2s, border-color 0.2s;
}

.portal .col-lg-8 .booking-option-card .card-body {
    background-color: transparent !important;
    color: inherit;
}

.portal .col-lg-8 .booking-option-card .card-title {
    color: #fff !important;
    font-weight: 600;
}

.portal .col-lg-8 .booking-option-card .card-text,
.portal .col-lg-8 .booking-option-card .card-text.text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.portal .col-lg-8 .booking-service-select .booking-option-link:hover .booking-option-card {
    background-color: #252525 !important;
    border-color: #555;
}

.portal .col-lg-8 .booking-option-card.border-primary {
    border-width: 2px;
    border-color: #c9a227 !important;
    background-color: #252218 !important;
}

.portal .col-lg-8 .booking-service-select h6 {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* ----- Booking: Info-Boxen (How booking works / Please select a service above) ----- */
.portal .col-lg-8 .booking-info-box {
    background-color: #1a1a1a !important;
    border: 1px solid #444;
    border-radius: 8px;
    color: #eee;
}

.portal .col-lg-8 .booking-info-box h5,
.portal .col-lg-8 .booking-info-box p,
.portal .col-lg-8 .booking-info-box ol,
.portal .col-lg-8 .booking-info-box li,
.portal .col-lg-8 .booking-info-box small {
    color: #eee !important;
}

.portal .col-lg-8 .booking-info-box a {
    color: #7dd3fc !important;
    text-decoration: underline;
}

.portal .col-lg-8 .booking-info-box a:hover {
    color: #b8e6fd !important;
}

/* ----- Booking Slots: Zeitslot-Karten (Datum, Uhrzeit, Dauer) lesbar ----- */
.portal .col-lg-8 .card.border-primary {
    background-color: #1a1a1a !important;
    border-color: #c9a227 !important;
    border-width: 1px;
    color: #eee;
}

.portal .col-lg-8 .card.border-primary .card-body {
    background-color: transparent !important;
    color: #eee;
}

.portal .col-lg-8 .card.border-primary h6,
.portal .col-lg-8 .card.border-primary .card-body h6 {
    color: #fff !important;
}

.portal .col-lg-8 .card.border-primary .text-muted,
.portal .col-lg-8 .card.border-primary small {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Datum-Karte oben (z. B. „Mittwoch, 25.02.2026“ + Service-Badge) */
.portal .col-lg-8 .card .card-body h5.mb-1 {
    color: #fff !important;
}

/* ----- Tabellen (Invoices, Orders, Contracts) – explizit dunkel, Text hell ----- */
.portal .col-lg-8 .table,
.portal .col-lg-8 .table-responsive .table {
    background-color: #111 !important;
    color: #eee !important;
    border-color: #444;
}

.portal .col-lg-8 .table thead th {
    background-color: #1a1a1a !important;
    border-color: #444;
    color: rgba(255, 255, 255, 0.95) !important;
}

.portal .col-lg-8 .table tbody tr {
    background-color: #111 !important;
    border-color: #444;
    color: #eee !important;
}

.portal .col-lg-8 .table td,
.portal .col-lg-8 .table th,
.portal .col-lg-8 .table tbody td,
.portal .col-lg-8 .table tbody th {
    background-color: #111 !important;
    border-color: #444;
    color: #eee !important;
}

/* Tabellen-Zelleninhalt (Betrag, Quantity, Datum etc.) explizit lesbar */
.portal .col-lg-8 .table td,
.portal .col-lg-8 .table tbody td {
    color: #eee !important;
}

.portal .col-lg-8 .table-hover tbody tr:hover {
    background-color: #222 !important;
}

.portal .col-lg-8 .table-hover tbody tr:hover td,
.portal .col-lg-8 .table-hover tbody tr:hover th {
    background-color: #222 !important;
    color: #eee !important;
}

/* Responsive Tabellen (data-label) – Label-Text lesbar */
.portal .col-lg-8 .table-responsive tbody tr td[data-label]::before {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Status-Farben in Tabellen/Blöcken auf dunklem Grund hell genug */
.portal .col-lg-8 .text-warning {
    color: #ffc107 !important;
}

.portal .col-lg-8 .text-success {
    color: #75c575 !important;
}

.portal .col-lg-8 .text-danger {
    color: #f08080 !important;
}

.portal .col-lg-8 .text-primary {
    color: #7dd3fc !important;
}

.portal .col-lg-8 .fw-semibold.text-warning { color: #ffc107 !important; }
.portal .col-lg-8 .fw-semibold.text-success { color: #75c575 !important; }
.portal .col-lg-8 .fw-semibold.text-danger  { color: #f08080 !important; }

/* ----- Alerts (Infotexte mit eigenem Hintergrund): gut lesbar ----- */
.portal .col-lg-8 .alert {
    border-width: 1px;
    color: #fff;
}

.portal .col-lg-8 .alert-warning {
    background-color: rgba(255, 193, 7, 0.25);
    border-color: #e0a800;
    color: #fff;
}

.portal .col-lg-8 .alert-warning .alert-link {
    color: #ffecb3;
    text-decoration: underline;
}

.portal .col-lg-8 .alert-warning .alert-link:hover {
    color: #fff;
}

.portal .col-lg-8 .alert-primary,
.portal .col-lg-8 .alert-secondary {
    background-color: rgba(58, 63, 68, 0.45);
    border-color: #4b5259;
    color: #eef2f5;
}

/* Passwort-ändern-Hinweis (Portal-Dashboard): Gold-Hintergrund, schwarze Schrift */
.portal .col-lg-8 .alert.portal-alert-password-change {
    background-color: #c9a227 !important;
    border-color: #b8941e;
    color: #1a1a1a !important;
}

.portal .col-lg-8 .alert.portal-alert-password-change .alert-link {
    color: #0a0a0a !important;
    text-decoration: underline;
}

.portal .col-lg-8 .alert.portal-alert-password-change .alert-link:hover {
    color: #000 !important;
}

.portal .col-lg-8 .alert.portal-alert-password-change .btn-close {
    filter: none;
    opacity: 0.8;
}

.portal .col-lg-8 .alert-info {
    background-color: rgba(13, 110, 253, 0.3);
    border-color: #0d6efd;
    color: #e7f1ff;
}

.portal .col-lg-8 .alert-info .alert-link {
    color: #b8d4ff;
    text-decoration: underline;
}

.portal .col-lg-8 .alert-success {
    background-color: rgba(40, 167, 69, 0.25);
    border-color: #28a745;
    color: #d4edda;
}

.portal .col-lg-8 .alert-danger {
    background-color: rgba(220, 53, 69, 0.25);
    border-color: #dc3545;
    color: #f8d7da;
}

/* Alert-Close-Button sichtbar */
.portal .col-lg-8 .alert .btn-close {
    filter: invert(1);
    opacity: 0.9;
}

/* ----- Buttons: Gold-Akzent im Portal (gut lesbar, warm) ----- */
.portal .col-lg-8 .btn {
    border-radius: 0.5rem;
    font-weight: 600;
}

.portal .col-lg-8 .btn-primary {
    background-color: #c9a227;
    border-color: #c9a227;
    color: #1a1a1a !important;
}

.portal .col-lg-8 .btn-primary:hover {
    background-color: #b8941e;
    border-color: #b8941e;
    color: #1a1a1a !important;
}

.portal .col-lg-8 .btn-secondary {
    background-color: #3a3f44;
    border-color: #4b5259;
    color: #fff !important;
}

.portal .col-lg-8 .btn-secondary:hover {
    background-color: #4b5259;
    border-color: #5a6268;
    color: #fff !important;
}

.portal .col-lg-8 .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff !important;
}

.portal .col-lg-8 .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: #fff !important;
}

.portal .col-lg-8 .btn-outline-primary {
    background-color: #c9a227;
    border-color: #c9a227;
    color: #1a1a1a !important;
}

.portal .col-lg-8 .btn-outline-primary:hover {
    background-color: #b8941e;
    border-color: #b8941e;
    color: #1a1a1a !important;
}

.portal .col-lg-8 .btn-outline-secondary {
    background-color: #3a3f44;
    border-color: #4b5259;
    color: #fff !important;
}

.portal .col-lg-8 .btn-outline-secondary:hover {
    background-color: #4b5259;
    border-color: #5a6268;
    color: #fff !important;
}

.portal .col-lg-8 .btn-outline-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff !important;
}

.portal .col-lg-8 .btn-outline-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: #fff !important;
}

.portal .col-lg-8 .btn-outline-light {
    background-color: #3a3f44;
    border-color: #5a6268;
    color: #fff !important;
}

.portal .col-lg-8 .btn-outline-light:hover {
    background-color: #4b5259;
    border-color: #6c757d;
    color: #fff !important;
}

/* Kleine Buttons (btn-sm) gleiche Sichtbarkeit */
.portal .col-lg-8 .btn-sm.btn-primary,
.portal .col-lg-8 .btn-sm.btn-outline-primary {
    color: #1a1a1a !important;
}

/* ----- Badges (Status etc.) gut lesbar ----- */
.portal .col-lg-8 .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.7rem !important;
    border-radius: 999px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0;
    border: 0 !important;
}

.portal .col-lg-8 .badge.bg-warning {
    background-color: #e0a800 !important;
    color: #000 !important;
}

.portal .col-lg-8 .badge.bg-success {
    background-color: #28a745 !important;
    color: #fff !important;
}

.portal .col-lg-8 .badge.bg-danger {
    background-color: #dc3545 !important;
    color: #fff !important;
}

.portal .col-lg-8 .badge.bg-secondary {
    background-color: #5a6268 !important;
    color: #fff !important;
}

.portal .col-lg-8 .badge.bg-primary {
    background-color: #0d6efd !important;
    color: #fff !important;
}

.portal .col-lg-8 .product-category-accent {
    background-color: transparent !important;
    color: #c9a227 !important;
    border: 0;
    box-shadow: none !important;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.portal .col-lg-8 span.product-category-accent,
.portal .col-lg-8 a.product-category-accent {
    background-image: none !important;
}

.portal .col-lg-8 a.product-category-accent:hover {
    background-color: transparent !important;
    color: #b8941e !important;
    text-decoration: underline !important;
}

/* small / Zusatztexte */
.portal .col-lg-8 small {
    color: rgba(255, 255, 255, 0.8);
}

.portal .col-lg-8 small.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Trennlinien im Hauptinhalt */
.portal .col-lg-8 hr {
    border-color: #444;
    opacity: 1;
}

/* ----- Termine im Portal: dunkle Struktur statt hellem Listen-Look ----- */
.portal .col-lg-8 .appointment-list {
    background-color: transparent;
}

.portal .col-lg-8 .list-group {
    background-color: transparent;
}

.portal .col-lg-8 .list-group-item {
    background-color: #151515 !important;
    border-color: #333;
    color: #eee;
}

.portal .col-lg-8 .appointment-list-item {
    background-color: #151515 !important;
    border-color: #333;
    color: #eee;
    padding: 1.25rem;
}

.portal .col-lg-8 .appointment-list-item + .appointment-list-item {
    border-top: 1px solid #2f2f2f;
}

.portal .col-lg-8 .appointment-list-item:hover {
    background-color: #1b1b1b !important;
}

.portal .col-lg-8 .product-price-cycle {
    font-size: 0.65em;
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 600;
}

.portal .col-lg-8 .appointment-title {
    color: #fff !important;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.portal .col-lg-8 .appointment-meta {
    color: rgba(255, 255, 255, 0.9);
}

.portal .col-lg-8 .appointment-meta i,
.portal .col-lg-8 .appointment-title i {
    color: #c9a227;
}

.portal .col-lg-8 .appointment-meta-footer {
    gap: 0.75rem;
}

.portal .col-lg-8 .appointment-booked-at {
    margin-bottom: 0;
}

.portal .col-lg-8 .appointment-actions {
    display: flex;
    align-items: stretch;
}

.portal .col-lg-8 .appointment-actions-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 100%;
    padding-left: 1rem;
}

.portal .col-lg-8 .appointment-action-hint {
    display: inline-block;
    max-width: 18rem;
}

.portal .col-lg-8 .appointment-zoom-btn {
    background-color: #c9a227;
    border-color: #c9a227;
    color: #1a1a1a !important;
}

.portal .col-lg-8 .appointment-zoom-btn:hover {
    background-color: #b8941e;
    border-color: #b8941e;
    color: #1a1a1a !important;
}

.portal .col-lg-8 .appointment-notes {
    background-color: #101010;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0.9rem 1rem;
}

.portal .col-lg-8 .appointment-notes strong {
    color: #fff;
}

.portal .col-lg-8 .pagination {
    gap: 0.35rem;
}

.portal .col-lg-8 .page-link {
    background-color: #161616;
    border-color: #333;
    color: #fff;
}

.portal .col-lg-8 .page-link:hover {
    background-color: #1f1f1f;
    border-color: #444;
    color: #fff;
}

.portal .col-lg-8 .page-item.active .page-link {
    background-color: #c9a227;
    border-color: #c9a227;
    color: #1a1a1a;
}

.portal .col-lg-8 .modal-content {
    background-color: #111;
    color: #eee;
    border-color: #333;
}

.portal .col-lg-8 .modal-header,
.portal .col-lg-8 .modal-footer {
    border-color: #333;
}

@media (min-width: 768px) {
    .portal .col-lg-8 .appointment-actions-inner {
        border-left: 1px solid #333;
    }
}

@media (max-width: 991.98px) {
    .portal .col-lg-8 .table-responsive tbody tr {
        background: #151515 !important;
        border: 1px solid #333 !important;
        box-shadow: none;
    }

    .portal .col-lg-8 .table-responsive tbody tr td {
        color: #eee !important;
    }

    .portal .col-lg-8 .table-responsive tbody tr td:last-child {
        border-top: 1px solid #333;
    }
}

@media (max-width: 767.98px) {
    .portal .col-lg-8 .appointment-actions-inner {
        justify-content: flex-start;
        padding-left: 0;
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 1px solid #333;
    }
}
