body {
    background-color: #ddd8d8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

.terminal-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.terminal-box {
    width: 100%;
    max-width: 500px;
    background-color: #222222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.header {
    background-color: #333333;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 14px;
    align-items: center;
}

.status-indicators {
    display: flex;
    gap: 6px;
}

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

.status-indicators .red {
    background-color: #ff605c;
}

.status-indicators .yellow {
    background-color: #ffbd44;
}

.status-indicators .green {
    background-color: #00ca4e;
}

.header .title {
    flex-grow: 1;
    text-align: center;
}

.loading-text {
    padding: 20px;
    color: #00ff00;
    font-size: 16px;
    display: flex;
    justify-content: center;
    gap: 6px;
    font-weight: bold;
}

.loading-text span {
    animation: ping-animation 1.5s ease-in-out infinite;
}

.loading-text span:nth-child(1) {
    animation-delay: 0.5s;
}

.loading-text span:nth-child(2) {
    animation-delay: 0.7s;
}

.loading-text span:nth-child(3) {
    animation-delay: 0.9s;
}

/* Keyframe for the "ping" effect */
@keyframes ping-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .terminal-box {
        width: 90%;
        max-width: 400px;
    }

    .header {
        font-size: 12px;
    }

    .loading-text {
        font-size: 14px;
    }
}