.highlight-update {
    animation: highlight 0.5s forwards; /* Ensure the animation stays at the final frame */
}
@keyframes highlight {
    from { background-color: lightblue; }
    to { background-color: transparent; }
}

.container-fluid {
    padding: 0; /* Remove padding from the container */
}

input, textarea, select {
    display: block;
    margin-bottom: 10px;
    width: 300px;
}
.btn-success {
    background-color: green;
    border-color: green;
}
.btn-success:hover {
    background-color: darkgreen;
    border-color: darkgreen;
}
body, html {
    background-color: #c8c8c8;
    height: 100%;
}

#nav_left {
    background-color: #bdbdbd81;
}

.carousel-item  {
    text-align: center;
    padding: 20px;
}

.service-status-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.status-light {
    width: 12px;
    height: 12px;
    margin-left: 10px;
    background-color: grey;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
    transform: rotate(45deg);
    transition: background-color 0.3s ease;
}

.status-light.ok {
    background-color: #28a745; /* Bootstrap's success color */
}

.status-light.error {
    background-color: #dc3545; /* Bootstrap's danger color */
}

.status-light.warning {
    background-color: #ffc107; /* Bootstrap's warning color */
}

.service-text {
    margin-left: 20px; /* Adjust the text spacing if necessary */
}

.current-time {
    font-size: 32px;
    text-align: center;
}

#newsCarousel {
    background-color:#e9e9e99d;
    border-radius: 10px;
    border:#c8c8c8;
}

        .google-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 500;
            color: #757575;
            background-color: #ffffff;
            border: 1px solid #4286f4c6;
            padding: 10px 15px;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .google-btn:hover {
            background-color: #f8f8f8;
            border-color: #0862f3bd;
        }

        .google-btn img {
            height: 20px;
            width: 20px;
        }
        



