.protected-content-wrapper {
    position: relative;
}

.protected-content-wrapper .content-container {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.protected-content-wrapper .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}

.protected-content-message {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.protected-content-message h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.protected-content-message p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.protected-content-message .login-button {
    background-color: #0073e6;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.protected-content-message .login-button:hover {
    background-color: #005bb5;
}

.protected-content-message .register-text {
    font-size: 14px;
    color: #777;
    margin-top: 20px;
}

.protected-content-message .register-link {
    color: #0073e6;
    text-decoration: none;
}

.protected-content-message .register-link:hover {
    text-decoration: underline;
}
