.centered-text {
    text-align: center;
    color: rgba(128, 128, 128, 0.5); /* Gray with opacity 0.5 */
    opacity: 0.5; /* Set opacity for the text */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container {
    position: relative;
    min-height: 200px; /* Adjust this value based on your layout */
}

.hidden {
    display: none;
}

.show {
    display: block;
}