﻿.lamp-toggle {
    position: fixed;
    right: 30px;
    top: 0;
    width: 120px;
    height: 200px;
    z-index: 999999999 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
}
/* Lamba */
.lamp-img {
    width: 100px;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
}

.lamp-cord {
    width: 18px;
    height: 80px;
    margin-top: -10px;
    position: relative;
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    justify-content: center;
}

    .lamp-cord::before {
        content: "";
        width: 2px;
        height: 100%;
        background: linear-gradient(#aaa, #555);
        display: block;
    }
/* Uç */
.lamp-handle {
    width: 14px;
    height: 14px;
    background: #d8f21f;
    border-radius: 50%;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(216,242,31,0.5);
}

/* çekme animasyonu */
.lamp-cord.pull {
    transform: translateY(15px);
}
