﻿
.modem {
    border: 2px solid #000;
    border-radius: 5px;
    background-color: #ccc;
    color: black;
    font-family: Consolas;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.modem-header {
    height: 5px;
    background-color: darkgray;
}

.modem-footer{
    height:20px;
    background-color:gray;
}

.modem .marca {
    color: red;
    font-size: 20px;
    font-weight: 700;
}

    .modem .model {
        font-size: 1.4rem;
        font-weight: 700;
        text-align: right !important;
        color: #1a1a1a !important;
    }

.leds {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 5px;
}

.led {
    width: 15px;
    height: 30px;
    border: 1px solid black;
    border-radius: 100px 50px;
}

.off {
    opacity: 0.2;
}

.on {
    opacity: 1;
}

.power {
    background-color: #f00;
}

.tx {
    background-color: #0f0;
}

.rx {
    background-color: #00f;
}


.led > span{

}

.ticket{
    margin-top:20px;
    background-color:white;
    color:black !important;
    padding:10px;
    font-size:30px;
}

.fixed-ticket {
    position: fixed;
    border: 1px solid black;
    width: auto;
    background-color: white;
    left: 30%;
    top: 402px;
}



