.subtoview-container {
    position: relative;
    margin: 20px 0;
    overflow: hidden;
}

.subtoview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.subtoview-message {
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 80%;
}

.subtoview-message h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.subtoview-message p {
    margin: 0 0 20px 0;
    font-size: 16px;
}

.subtoview-button {
    background-color: #ff0000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.subtoview-button:hover {
    background-color: #cc0000;
}

.subtoview-unlocked .subtoview-content {
    filter: none !important;
    -webkit-filter: none !important;
}

.subtoview-unlocked .subtoview-overlay {
    display: none !important;
}

/* Admin table highlight animation */
.highlight {
    animation: highlight 2s ease-in-out;
}

@keyframes highlight {
    0% { background-color: #fffbde; }
    100% { background-color: transparent; }
}
/* Admin table delete button */
.subtoview-delete-button {
    background-color: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.subtoview-delete-button:hover {
    background-color: #c82333;
    border-color: #bd2130;
}