.not-logged-in-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.login-prompt-section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    text-align: center;
}

.login-prompt-content {
    max-width: 400px;
    margin: 0 auto;
}

.login-prompt-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.login-prompt-section h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.login-prompt-section p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.login-prompt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}

.login-prompt-btn:hover {
    background-color: #45a049;
    color: white;
    text-decoration: none;
}

.login-prompt-btn .icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.register-prompt {
    font-size: 0.9em;
    margin-bottom: 0 !important;
}

.register-prompt a {
    color: #2196F3;
    text-decoration: none;
    font-weight: 500;
}

.register-prompt a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .not-logged-in-container {
        padding: 15px;
    }
    
    .login-prompt-section {
        padding: 30px 15px;
    }
    
    .login-prompt-icon {
        width: 60px;
        height: 60px;
    }
    
    .login-prompt-section h2 {
        font-size: 1.3em;
    }
    
    .login-prompt-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}
