/**
 * TABLES STYLES - ODŚWIEŻONA WERSJA
 * Style dla tabel i list
 * Zaktualizowana kolorystyka i nowoczesny wygląd
 */

 .stable .headline .right {
    float: right;
    position: relative;
    z-index: 2;
}

.stable .headline .right input.textbox {
    padding: 6px 10px;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(0, 143, 255, 0.3);
    border-radius: 4px;
    color: #fff;
    transition: all 0.3s ease;
}

.stable .headline .right input.textbox:focus {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    outline: none;
}

.stable .row {
    box-sizing: border-box;
    width: 100%;
    font-size: 11pt;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 143, 255, 0.1);
    background: rgba(10, 10, 10, 0.3);
    transition: background-color 0.3s ease;
}

.stable .row:hover {
    background: rgba(0, 143, 255, 0.03);
}

/* Nagłówki tabel - sticky, normal, toch */
.tcat,
.tfoot,
.stable .row.sticky,
.stable .row.normal,
.stable .row.toch {
    background: linear-gradient(135deg, 
        rgba(0, 82, 163, 0.8) 0%, 
        rgba(0, 143, 255, 0.6) 100%);
    padding: 12px 25px;
    color: #fff;
    border-radius: 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

/* Animowany efekt świecenia dla nagłówków */
.tcat::before,
.tfoot::before,
.stable .row.sticky::before,
.stable .row.normal::before,
.stable .row.toch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.15) 50%, 
        transparent 100%);
    animation: shimmer 4s infinite;
    z-index: 1;
    pointer-events: none;
}

.tcat a,
.tfoot a,
.stable .row.sticky a,
.stable .row.normal a,
.stable .row.toch a {
    color: #00d4ff;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.tcat a:hover,
.tfoot a:hover,
.stable .row.sticky a:hover,
.stable .row.normal a:hover,
.stable .row.toch a:hover {
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.tcat:not(:last-child) {
    border-right: 1px solid rgba(0, 143, 255, 0.2);
}

.stable .row .title {
    display: inline-block;
    font-weight: bold;
    font-size: 11pt;
    color: #ffffff;
}

.stable .row .title i {
    margin-right: 5px;
    color: #00d4ff;
}

.stable .row .value {
    display: inline-block;
    color: #7a8ca0;
    font-size: 11pt;
}

.stable .row > .title {
    display: inline-block;
    font-weight: bold;
    font-size: 11pt;
    color: #ffffff;
}

.stable .row > .title i {
    margin-right: 5px;
    color: #00d4ff;
}

.stable .row .value {
    display: inline-block;
    color: #7a8ca0;
    font-size: 11pt;
    padding-left: 5px;
}

/* Wiersze wątków */
.row.thread {
    display: table;
    width: 100%;
}

.row.thread > div {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.row.thread > div.status,
.row.thread > div.icon {
    display: none;
}

.row.thread > div.thread-info {
    width: 42%;
}

.row.thread > div.stats {
    width: 15%;
    text-align: right;
}

.row.thread > div.stats span {
    color: #6a7a90;
    font-size: 9.5pt;
    font-weight: normal;
}

.row.thread > div.stats a,
.row.thread > div.stats .views:not(span) {
    font-size: 9.5pt;
    vertical-align: middle;
    color: #7a8ca0;
    transition: color 0.3s ease;
}

.row.thread > div.stats a:hover {
    color: #00d4ff;
}

.row.thread > div.last-post {
    width: 17%;
    text-align: right;
}

.row.thread > div.modbit {
    width: 3%;
    text-align: right;
}

.row.thread .thread-info {
    position: relative;
}

.row.thread .thread-info .avatar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    overflow: hidden;
}

.row.thread .last-post .avatar,
.row.och .avatar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    overflow: hidden;
}

.row.thread .thread-info .avatar img,
.row.thread .last-post .avatar img,
.row.och .avatar img {
    border: 2px solid rgba(0, 143, 255, 0.3);
    border-radius: 50%;
    transition: border-color 0.3s ease;
}

.row.thread:hover .thread-info .avatar img,
.row.thread:hover .last-post .avatar img,
.row.och:hover .avatar img {
    border-color: rgba(0, 212, 255, 0.6);
}

.row.thread .last-post .avatar {
    right: 0;
}

.row.och .info {
    padding-left: 50px;
}

.row.thread .last-post .info {
    padding-right: 60px;
    font-size: 9.5pt;
    line-height: 20px;
    color: #7a8ca0;
}

.row .avatarep_fd {
    float: none;
    margin: auto;
    padding: 0;
    width: auto;
    height: auto;
}

.row.thread .thread-info .info:not(.avatar-none) {
    padding-left: 65px;
}

.row.thread .thread-info .info .thread-name a {
    color: #ffffff;
    font-size: 11.25pt;
    font-weight: bold;
    transition: all 0.3s ease;
}

.row.thread .thread-info .info .thread-name a:hover {
    color: #00d4ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.row.thread .thread-info .info a,
.row.thread > div.stats a {
    font-size: 9.5pt;
    color: #7a8ca0;
    transition: color 0.3s ease;
}

.row.thread .thread-info .info a:hover {
    color: #00d4ff;
}

.row.avatar img {
    max-width: unset;
    max-height: unset;
}

/* Wiersze och */
.stable .row.och {
    display: table;
    width: 100%;
    text-align: left;
}

.stable .row.och > div {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    padding: 10px;
}

.stable .row.och.np > div {
    padding: 0 10px;
}

.stable .row.och .title {
    width: 50%;
    color: #ffffff;
}

.stable .row.och .title a {
    color: #ffffff;
    transition: all 0.3s ease;
}

.stable .row.och .title a:hover {
    color: #00d4ff;
}

.stable .row.och .username {
    width: 23%;
    color: #7a8ca0;
}

.stable .row.och .username a {
    color: #00d4ff;
    transition: all 0.3s ease;
}

.stable .row.och .username a:hover {
    color: #00f0ff;
}

.stable .row.och .dateline {
    width: 25%;
    color: #6a7a90;
}

.stable .row.och .manage {
    width: 2%;
    text-align: right;
}

.stable .row .right {
    float: right;
}

/* Multi-select stuff */
.ms-stuff {
    margin: 20px 0;
    padding: 15px 20px;
    background: rgba(15, 15, 15, 0.6);
    border-radius: 6px;
    border: 1px solid rgba(0, 143, 255, 0.15);
}

.ms-stuff .left {
    float: left;
}

.ms-stuff .right {
    float: right;
}

.ms-stuff select,
.ms-stuff input {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(0, 143, 255, 0.3);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ms-stuff select:focus,
.ms-stuff input:focus {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    outline: none;
}

.ms-stuff button,
.ms-stuff input[type="submit"] {
    background: linear-gradient(135deg, 
        rgba(0, 82, 163, 0.8) 0%, 
        rgba(0, 143, 255, 0.6) 100%);
    border: 1px solid rgba(0, 143, 255, 0.4);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ms-stuff button:hover,
.ms-stuff input[type="submit"]:hover {
    background: linear-gradient(135deg, 
        rgba(0, 143, 255, 0.8) 0%, 
        rgba(0, 212, 255, 0.6) 100%);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

/* Status icons w wątkach - ukryte */
.row.thread > div.status .thread_status,
.row.thread > div.icon .thread_icon {
    display: none;
}