:root {
    --panel: #26272c;
    --panel-deep: #18191d;
    --text: #ffffff;
    --muted: #8a8d97;
    --danger: #ff575d;
    --warning: #f5c24d;
    --success: #3ad97a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.75), transparent 35%),
        linear-gradient(180deg, #efefef 0%, #e4e4e4 100%);
    color: var(--text);
}

.dashboard-shell {
    min-height: 100vh;
    padding: 0;
    display: flex;
}

.dashboard-frame {
    width: 100%;
    min-height: 100vh;
    background: var(--panel);
    border-radius: 0;
    padding: 18px;
}

.sidebar {
    background: var(--panel-deep);
    border-radius: 22px;
    min-height: 680px;
    padding: 28px 22px 18px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 30px;
}

.brand {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 34px;
}

.menu-link {
    color: #90939b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 8px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.menu-link:hover,
.menu-link.active {
    color: var(--danger);
}

.menu-icon {
    width: 18px;
    text-align: center;
    opacity: 0.95;
}

.menu-badge {
    margin-left: auto;
    background: var(--danger);
    color: #fff;
    font-size: 0.65rem;
    line-height: 1;
    border-radius: 6px;
    padding: 4px 6px;
}

.profile-card {
    margin-top: auto;
    text-align: center;
    padding-top: 28px;
}

.avatar {
    width: 74px;
    height: 74px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 38%, #7e7f84 0 15%, transparent 16%),
        radial-gradient(circle at 50% 78%, #9a9ba0 0 25%, transparent 26%),
        linear-gradient(180deg, #3b3d43, #24262b);
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.03);
}

.date-box {
    margin-top: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #8d9098;
    font-size: 0.76rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
}

.content-area {
    padding: 8px 12px 8px 22px;
}

.hero-title {
    font-size: 2.15rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 2px;
}

.hero-subtitle,
.muted {
    color: var(--muted);
}

.search-box {
    background: #2b2d33;
    border-radius: 999px;
    height: 42px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #71747c;
}

.search-box input {
    background: transparent;
    border: 0;
    color: #c3c5ca;
    outline: 0;
    width: 100%;
    font-size: 0.9rem;
}

.table-wrap {
    border-radius: 0px;
}

.mini-head {
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.small-label {
    color: #767982;
    font-size: 0.72rem;
    font-weight: 600;
}

.stat-row {
    background: #303238;
    border-radius: 14px;
    padding: 10px 18px;
    margin-top: 10px;
}

.stat-value {
    font-weight: 700;
    color: #f2f2f3;
}

.stat-positive {
    color: var(--success);
    font-weight: 700;
}

.stat-negative {
    color: var(--danger);
    font-weight: 700;
}

.ring {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(var(--danger) 0deg 235deg, rgba(255,255,255,0.08) 235deg 360deg);
}

.ring.warning {
    background: conic-gradient(var(--warning) 0deg 145deg, rgba(255,255,255,0.08) 145deg 360deg);
}

.ring.red {
    background: conic-gradient(var(--danger) 0deg 290deg, rgba(255,255,255,0.08) 290deg 360deg);
}

.ring::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #303238;
    border-radius: 50%;
}

.login-shell {
    min-height: 100vh;
    display: flex;
    padding: 0;
}

.login-frame {
    width: 100%;
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(255, 87, 93, 0.16), transparent 28%),
        linear-gradient(180deg, #25262b 0%, #202127 100%);
    border-radius: 0;
    padding: 20px;
}

.login-aside {
    height: 100%;
    min-height: 680px;
    background:
        radial-gradient(circle at top left, rgba(245, 194, 77, 0.16), transparent 22%),
        linear-gradient(180deg, #1a1b20 0%, #17181c 100%);
    border-radius: 26px;
    padding: 34px;
    position: relative;
    overflow: hidden;
    background-image: url("../images/bg.png");
    background-size: cover;
}

.login-aside::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.login-brand {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.login-kicker {
    color: var(--danger);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 800;
}

.login-title {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.06em;
    margin: 18px 0 14px;
    max-width: 420px;
}

.login-copy {
    max-width: 420px;
    color: #a4a7af;
    font-size: 0.98rem;
    line-height: 1.7;
}

.login-feature-list {
    margin-top: 38px;
    display: grid;
    gap: 16px;
}

.login-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.login-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 87, 93, 0.14);
    color: var(--danger);
    font-size: 1rem;
}

.login-feature-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.login-feature-text {
    color: #ffffff;
    font-size: 0.88rem;
    line-height: 1.6;
}

.login-panel {
    height: 100%;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.login-card {
    width: 100%;
    max-width: 470px;
    background: #2d2f35;
    border-radius: 28px;
    padding: 36px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.login-card-title {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 8px;
}

.login-card-copy {
    color: #979aa2;
    margin-bottom: 28px;
}

.login-label {
    display: block;
    margin-bottom: 10px;
    color: #dbdde1;
    font-size: 0.9rem;
    font-weight: 700;
}

.login-input-wrap {
    position: relative;
    margin-bottom: 18px;
}

.login-input-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #747881;
    font-size: 0.95rem;
}

.login-input {
    width: 100%;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: #23252a;
    color: #eef0f2;
    padding: 0 16px 0 46px;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-input::placeholder {
    color: #6f737b;
}

.login-input:focus {
    border-color: rgba(255, 87, 93, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 87, 93, 0.08);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #9599a1;
    font-size: 0.88rem;
}

.login-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.login-checkbox input {
    accent-color: var(--danger);
}

.login-link {
    color: #d9dbdf;
    text-decoration: none;
}

.login-link:hover {
    color: var(--danger);
}

.login-btn {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff6a61 0%, #ff4e58 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 18px 35px rgba(255, 87, 93, 0.22);
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
    color: #7f838b;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.login-alt-actions {
    display: grid;
    gap: 12px;
}

.login-alt-btn {
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #25272d;
    color: #f1f2f4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
}

.login-footer {
    margin-top: 22px;
    text-align: center;
    color: #8e929a;
    font-size: 0.9rem;
}

.login-footer a {
    color: #fff;
    text-decoration: none;
}

.login-footer a:hover {
    color: var(--danger);
}

.register-card {
    max-width: 520px;
}

.register-type-switch {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 20px;
}

.register-type-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dbdde1;
    font-size: 1rem;
    cursor: pointer;
}

.register-type-option input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #6d67ff;
}

.register-input {
    padding-left: 16px;
}

.register-password-wrap {
    position: relative;
}

.register-password-input {
    padding-right: 52px;
}

.register-password-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #a6a9b1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.register-terms {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 6px 0 24px;
    color: #b9bcc4;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.register-terms input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #6d67ff;
}

.register-terms .login-link {
    color: #6d67ff;
}

.register-btn {
    background: linear-gradient(135deg, #6f6bff 0%, #5f69ff 100%);
    box-shadow: 0 18px 35px rgba(103, 105, 255, 0.24);
}

.register-footer {
    margin-top: 28px;
}

.register-footer a {
    color: #6d67ff;
}

.profile-card a {
    color: #c60605;
    text-decoration: none;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
}

.form-surface {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 22px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.admin-form-label {
    display: block;
    margin-bottom: 8px;
    color: #d6d7dd;
    font-size: 0.95rem;
    font-weight: 700;
}

.admin-form-field {
    width: 100%;
    height: 45px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: var(--panel-deep);
    color: #f1f2f7;
    padding: 0 18px;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.admin-form-field::placeholder {
    color: #8e90a3;
}

.admin-form-field:focus {
    border-color: rgba(104, 102, 241, 0.75);
    box-shadow: 0 0 0 4px rgba(104, 102, 241, 0.12);
    background: rgba(39, 40, 55, 0.78);
}

.admin-select-wrap,
.admin-password-wrap {
    position: relative;
}

.admin-select-wrap::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #a6a8b5;
    pointer-events: none;
}

.admin-select {
    appearance: none;
    padding-right: 48px;
}

.admin-password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #cfd0d8;
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
}

.admin-password-field {
    padding-right: 50px;
}

.admin-submit-btn {
    width: 100%;
    height: 58px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(90deg, #6760e8 0%, #6a6af6 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(105, 101, 239, 0.18);
}

.admin-submit-btn:hover {
    filter: brightness(1.04);
}

.admin-file-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.admin-file-picker {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 45px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    overflow: hidden;
    background: var(--panel-deep);
}

.admin-file-button {
    min-width: 126px;
    height: 43px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: #f1f2f7;
    cursor: pointer;
    font-weight: 600;
}

.admin-file-name {
    flex: 1;
    padding: 0 16px;
    color: #b6b8c3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-card {
    background: var(--panel-deep);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.account-section-title {
    color: #8f92a4;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.account-info-list {
    display: grid;
    gap: 14px;
}

.account-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d7d9df;
    font-size: 0.96rem;
}

.account-info-row i {
    width: 16px;
    margin-top: 4px;
    color: #c7c9d0;
}

.account-info-label {
    font-weight: 700;
    margin-right: 4px;
}

.account-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 20px 0;
}

.account-summary-list {
    display: grid;
    gap: 14px;
}

.account-summary-item {
    color: #d8dae1;
    font-size: 0.98rem;
    font-weight: 700;
}

.account-table-card {
    background: var(--panel-deep);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.account-table-title {
    padding: 22px 24px;
    font-size: 1.1rem;
    font-weight: 800;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-table {
    margin-bottom: 0;
    color: #d6d8df;
}

.account-table thead th {
    background: transparent;
    color: #d9dbe2;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    white-space: nowrap;
}

.account-table tbody td {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 20px;
    color: #d1d4dc;
    vertical-align: middle;
}

.account-table tbody tr:last-child td {
    border-bottom: 0;
}

.account-table .btn {
    min-width: 86px;
    font-weight: 700;
}

.search-panel {
    background: var(--panel-deep);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 26px 24px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.search-input-wrap {
    position: relative;
}

.search-input-wrap .search-leading-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #d9dbe2;
    font-size: 1rem;
    pointer-events: none;
}

.search-panel-field {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #2d2e3d;
    color: #f1f2f7;
    padding: 0 16px;
    outline: 0;
}

.search-input-wrap .search-panel-field {
    padding-left: 50px;
}

.search-panel-field::placeholder {
    color: #a1a4b2;
}

.search-panel-field:focus {
    border-color: rgba(104, 102, 241, 0.75);
    box-shadow: 0 0 0 4px rgba(104, 102, 241, 0.12);
}

.search-result-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.search-result-row {
    padding: 8px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.search-result-code {
    color: #d7d9df;
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .search-panel {
        padding: 18px;
    }
}

@media (max-width: 991.98px) {
    .account-card,
    .account-table-title {
        padding: 18px;
    }

    .account-table thead th,
    .account-table tbody td {
        padding: 14px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        min-height: auto;
        margin-bottom: 18px;
    }

    .content-area {
        padding: 6px;
    }

    .login-shell {
        padding: 0;
    }

    .login-frame,
    .login-aside,
    .login-panel {
        min-height: auto;
    }

    .login-card {
        padding: 28px 22px;
    }

}

@media (min-width: 992px) {
    .dashboard-frame {
        padding: 22px;
    }
}

.w-px-50 { width: 50px !important; }
.w-px-100 { width: 100px !important; }
.w-px-150 { width: 150px !important; }
.w-px-200 { width: 200px !important; }

.mobile-menu-btn,
.mobile-menu-sidebar-overlay {
    display: none;
}

@media (max-width: 991.98px) {
    .mobile-menu-btn {
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 14px;
        background: #ff5a5f;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 14px 30px rgba(255, 90, 95, 0.22);
    }

    .mobile-menu-btn:focus {
        outline: 0;
        box-shadow: 0 0 0 4px rgba(255, 90, 95, 0.18);
    }

    .mobile-menu-sidebar-col {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1045;
        width: min(86vw, 320px);
        height: 100vh;
        padding: 14px;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
    }

    .mobile-menu-sidebar-col .sidebar {
        min-height: calc(100vh - 28px);
        height: 100%;
        border-radius: 20px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    }

    body.mobile-menu-open .mobile-menu-sidebar-col {
        transform: translateX(0);
    }

    .mobile-menu-sidebar-overlay {
        position: fixed;
        inset: 0;
        z-index: 1040;
        background: rgba(9, 10, 14, 0.62);
        backdrop-filter: blur(3px);
    }

    body.mobile-menu-open .mobile-menu-sidebar-overlay {
        display: block;
    }
}

.image_background 
{
  background: url('../images/ekran.png');
  background-position: center;
  background-size: 100%;
  /*background-size: cover;*/
  background-repeat: no-repeat;
  font-family: "VT323";
  /*font-size: 24.5px;*/
  font-size: clamp(24.5px, 1.5vw, 24.5px);
  letter-spacing: 4.5px;
  height: 148px;
  width: 330px;
  position: relative;
  margin: auto;
}
.image_background_text 
{
  position: absolute;
  margin-top: 43px;
  left: 15%;
  white-space: pre;
  color: black;
}
.image_background_text2
{
  position: absolute;
  margin-top: 65px;
  white-space: pre;
  left: 15%;
  color: black;
}
.w33{width: 33.3%;}
.w66{width: 66.6%;}
.w50{width: 50%;}
.w100{width: 100%;}

.maxdata{height: 250px; max-height: 250px; overflow-y: auto;}

.led-red  {
  margin-left: 10px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background-color: #F00000;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 0px 3px;
  opacity:1;
}
.led-red-pasif  {
  margin-left: 10px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background-color: #862f29;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 0px 3px;
  opacity:0.3;
}
.led-green {
  margin-left: 10px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background-color: #ABFF00;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #000000 0 0px 3px;
  opacity:1;
}
.led-green-pasif {
  margin-left: 10px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background-color: #467735;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #000000 0 0px 3px;
  opacity:0.3;
}

.led-orange  {
  margin-left: 10px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background-color: #FFA500;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #663c00 0 -1px 9px, rgba(255, 165, 0, 0.7) 0 0px 3px;
  opacity:1;
}
.led-orange-pasif  {
  margin-left: 10px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background-color: #a86b2a;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #663c00 0 -1px 9px, rgba(255, 165, 0, 0.7) 0 0px 3px;
  opacity:0.3;
}

.led-blue  {
  margin-left: 10px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background-color: #007BFF; /* MAVÄ° */
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #001f4d 0 -1px 9px, rgba(0, 123, 255, 0.7) 0 0px 3px;
  opacity:1;
}

.led-blue-pasif  {
  margin-left: 10px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background-color: #2a4f8a; /* soluk mavi */
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #001f4d 0 -1px 9px, rgba(0, 123, 255, 0.7) 0 0px 3px;
  opacity:0.3;
}

.detaysticky{position: sticky;top: 30px;}

.yonbutonlari{border-radius: 50% !important;width: 80px;height: 80px;box-shadow: 0px 0px 7px 2px #fff;}

.btn.btn-yonbutonlari {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}
.btn.btn-yonbutonlari:hover {
    background-color: #c6c6c6;
    color: #000;
    border-color: #ccc;
}
.btn.btn-yonbutonlari:active,
.btn.btn-yonbutonlari.active {
    background-color: #c60605;
    color: #fff;
    border-color: #c60605;
}

/* .btn.btn-yonbutonlari:focus {box-shadow: none;} */

.fs10{font-size: 10px;}
.fs11{font-size: 11px;}
.fs12{font-size: 12px;}
.fs13{font-size: 13px;}
.fs14{font-size: 14px;}
.fs15{font-size: 15px;}
.fs16{font-size: 16px;}
.fs17{font-size: 17px;}
.fs18{font-size: 18px;}
.fs19{font-size: 19px;}
.fs20{font-size: 20px;}