﻿/* Technical Room Floating Icon */
#tech-room-icon {
    position: fixed;
    bottom: 20px;
    right: 90px; 
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #113055;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.2s;
}

    #tech-room-icon i {
        vertical-align: middle;
    }

    #tech-room-icon:hover {
        background-color: #1b4a87;
        transform: scale(1.05);
    }

#tech-room-panel {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 90px;
    width: 250px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
}

    #tech-room-panel strong {
        display: block;
        margin-bottom: 8px;
        color: #113055;
    }

    #tech-room-panel a {
        display: block;
        margin-bottom: 5px;
        color: #113055;
        text-decoration: none;
    }

        #tech-room-panel a:hover {
            text-decoration: underline;
        }
