/* =========================
   HEADER (tytuł + ikony)
========================= */

.ck-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

/* Tytuł */
.ck-widget-title {
    margin: 0;
    font-weight: 700;
    position: relative;
    top: 0px!important;
    text-transform: uppercase;
}

/* Czerwona linia pod tytułem jak na stronie */
.ck-widget-title::after {
    /*content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #e30613;
    /*margin-top: 8px;*/
}

/* =========================
   IKONY
========================= */

.ck-tabs {
    display: flex;
    gap: 5px;
}

/* Podstawowy przycisk */
.ck-tabs .btn {
    width: 50px;
    height: 50px;
    padding: 0;
    background: #cccccc;
    border: none;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* =========================
   IKONY
========================= */

.ck-tabs {
    display: flex;
    gap: 4px;
}

/* Przyciski */
.ck-tabs .btn {
    width: 52px;
    height: 52px;
    padding: 0;
    background: #cccccc;
    border: none;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;

    /* TO JEST KLUCZ */
    color: #000000;
}

/* Ikona dziedziczy kolor */
.ck-tabs svg {
    width: 26px;
    height: 26px;
}

/* Hover */
.ck-tabs .btn:hover {
    background: #b5b5b5;
    transform: translateY(-2px);
}

/* Aktywny */
.ck-tabs .btn.active {
    background: #e30613;
    color: #ffffff; /* <-- zmienia kolor SVG */
}

/* =========================
   CONTENT
========================= */

.ck-content {
    min-height: 40px;
    color: #000!important;
}

/* Loader */
.ck-loader {
    text-align: center;
    padding: 15px;
}