.company-status {
    padding: 0px 15px;
    border-radius: 8px;
    margin: 0px 0;
    font-family: Arial, sans-serif;
    /* display: flex; */
    align-items: center;
    gap: 10px;
    text-align: right;
}

.company-status.open {
    /* background-color: #e8f5e8; */
    border: 0px solid #4caf50;
    color: #4caf50;
}

.company-status.closed {
    /*background-color: #ffebee;*/
    border: 0px solid #f44336;
    color: #f44336;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.company-status.open .status-indicator {
    background-color: #4caf50;
}

.company-status.closed .status-indicator {
    background-color: #f44336;
}

.status-text {
    font-size: 16px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .company-status {
        padding: 8px 12px;
        margin: 5px 0;
        text-align: center;
        gap: 8px;
        font-size: 14px;
    }
}
/* Очень маленькие экраны */
@media (max-width: 480px) {

}
@media (max-width: 1024px) and (min-width: 769px) {

}
