body {
    font-family: Roboto, Helvetica Neue, sans-serif;
    margin: 0;
    padding: 0
}

div.container {
    padding-top: 20px;
    width: 80%;
    margin-right: auto;
    margin-left: auto
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#deployment-table {
    width: 350px;
}

#deployment-table th {
    text-align: left;
    width: 140px;
}

.reload-button {
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    text-align: center;
    overflow: hidden;
    background: none;
    border: none;
}

.reload-button:hover .icon {
    transform: rotate(360deg);
}

.icon {
    padding: 0;
    width: 24px;
    height: 24px;
    transition: all 0.4s ease-in-out;
}

.results-container {
    margin-top: 30px;
    margin-bottom: 50px;
}

.actuator-health-container {
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.actuator-success {
    background: #3d8a00;
    border: 4px solid #3d8a00;
}

.actuator-failure {
    background: #ee0b0b;
    border: 4px solid #ee0b0b;
}

@property --bg-angle {
    inherits: false;
    initial-value: 0deg;
    syntax: "<angle>";
}

@keyframes spin {
    0% {
        --bg-angle: 0deg;
    }
    100% {
        --bg-angle: 360deg;
    }
}

.loading-actuator-health {
    padding: 10px 20px;
    border: 6px solid transparent;
    border-radius: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: spin 2.2s infinite linear;
    background:
        linear-gradient(
            to bottom,
            oklch(1 0 0),
            oklch(1 0 0)
        )
        padding-box,
        conic-gradient(
            from var(--bg-angle),
            white 0deg 90deg,
            orange 90deg 180deg,
            white 180deg 270deg,
            orange 270deg 360deg
        )
        border-box;
}

.health-results {
    display: flex;
    align-items: center;
}

#latest-health-check {
    margin-left: 6px;
    font-size: 16px;
    font-weight: bold;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top: 2px solid #444444;
    border-radius: 50%;
    animation: spin-wheel 1s linear infinite;
    display: none;
}

@keyframes spin-wheel {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.health-button {
    align-items: center;
    appearance: none;
    background-clip: padding-box;
    background-color: initial;
    background-image: none;
    border-style: none;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    flex-direction: row;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: bold;
    justify-content: center;
    margin: 0;
    min-height: 48px;
    outline: none;
    overflow: visible;
    padding: 10px 26px;
    pointer-events: auto;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    width: auto;
    word-break: keep-all;
    z-index: 0;
}

.health-button:before,
.health-button:after {
    border-radius: 60px;
    content: "";
    display: block;
    overflow: hidden;
    position: absolute;
}

.health-button:before {
    background: black;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -2;
}

.health-button:after {
    background: white;
    bottom: 4px;
    left: 4px;
    right: 4px;
    top: 4px;
    transition: all 100ms ease-out;
    z-index: -1;
}

.health-button:hover::after {
    background: #cccccc;
}

.health-button:hover:after {
    transition-timing-function: ease-in;
}

.health-button:active {
    color: #bbbbbb;
}

.check-icon {
    background: #3d8a00;
    width: 25px;
    display: inline-block;
    position: relative;
    height: 25px;
    border-radius: 3px;
}

.check-icon::before {
    content: '';
    margin-left: 9px;
    margin-top: 4px;
    display: inline-block;
    transform: rotate(45deg);
    height: 10px;
    width: 5px;
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
}

.cross-icon {
    background: #ee0b0b;
    width: 25px;
    display: inline-block;
    position: relative;
    height: 25px;
    border-radius: 3px;
    vertical-align: middle;
}

.cross-icon::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 16px;
    background: #fff;
    left: 11px;
    top: 5px;
    transform: rotate(-45deg);
    z-index: 1;
}

.cross-icon::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 16px;
    background: #fff;
    left: 11px;
    top: 5px;
    transform: rotate(45deg);
    z-index: 1;
}

.mat-table-container {
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.mat-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border: 1px solid #ddd;
    border-radius: 8px;
    }

.mat-header-cell {
    padding: 12px 20px;
    font-weight: bold;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.mat-cell {
    padding: 12px 20px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}