.header {
    background-color: #e37909b0 ;
    z-index: 1;
}

.container{
    max-width: 800px;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lastupdate {
    display: inline-block;
    color: #ffffff;
    margin: 0px;
}

.card-shadow{
    border-radius: 1rem;
    margin-top: -30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-shadow-services{
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    
}

body{
    background-color: rgba(255, 255, 255);
}

.td{
    margin: -30;
}

.table{
    font-size: 12px;
    
}

.dot {
    position: relative;
    display: inline-block;
    width: 10px; /* Adjust the size of your dot */
    height: 10px; /* Adjust the size of your dot */
    color: rgb(2, 233, 18);
}

.dot:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: currentColor;
    animation: pulse 2s infinite;
    opacity: 1;
    border-radius: 50%;
    top: 0;
    left: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.striped-border { 
    border: 1px dashed #9c9c9c; 
    width: 97%;
    margin-left: 0.7rem;
}
