.b-example-divider {
  width: 100%;
  height: 3rem;
  background-color: #0000001a;
  border: solid rgba(0,0,0,.15);
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em #0000001a,inset 0 .125em .5em #00000026;
}

.navbar {
    background-color: #f9f9f9; /* light gray background */
}

.navbar-nav {
    background-color: #f9f9f9; /* light gray background */
}

.navbar-toggler {
    background-color: #f9f9f9; /* light gray background */
}

.logo {
    margin-left:10px;
    height:60px;
    width:60px;
}

body {
    font-family: "Comfortaa", sans-serif;
}

display: inline-flex;
gap: 5px;
}

.star-icon {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s ease;
}

    .star-icon:hover,
    .star-icon.active {
        color: #ffc107;
    }

.video-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

    .video-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    }

    .video-card .play-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0);
        transition: background 0.2s ease;
        font-size: 3.5rem;
        color: rgba(255,255,255,0);
    }

    .video-card:hover .play-overlay {
        background: rgba(0,0,0,0.35);
        color: rgba(255,255,255,0.95);
    }

    .video-card .card-img-top {
        transition: transform 0.3s ease;
    }

    .video-card:hover .card-img-top {
        transform: scale(1.03);
    }

.trumbowyg-button-pane {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: #fff !important;
}