.restrict-read-code-container {
    background: #fff;
    border-style: dashed;
    border-color: #bfc9dc;
    border-width: 2px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;


    .skeleton-content {
        position: relative;
        min-height: 120px;
    }

    .skeleton-line {
        height: 20px;
        background: #f0f0f0;
        border-radius: 4px;
    }

    .skeleton-line:nth-child(1) {
        width: 100%;
        margin-bottom: 16px;
    }

    .skeleton-line:nth-child(2) {
        width: 70%;
        margin-bottom: 16px;
    }

    .skeleton-line:nth-child(3) {
        width: 85%;
        margin-bottom: 16px;
    }

    .skeleton-line:nth-child(4) {
        width: 75%;
        margin-bottom: 16px;
    }

    .skeleton-line:nth-child(5) {
        width: 90%;
        margin-bottom: 16px;
    }

    .skeleton-line:nth-child(6) {
        width: 100%;
    }

    .skeleton-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }

    .skeleton-text {
        color: #333;
        font-size: 16px;
        margin-bottom: 20px;
        text-align: center;
    }

    .view-more-btn {
        background-color: #1677ff;
        color: white;
        border: none;
        padding: 10px 24px;
        border-radius: 6px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .view-more-btn:hover {
        background-color: #4096ff;
        transform: translateY(-1px);
    }

    .view-more-btn:active {
        transform: translateY(0);
    }
}