[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}

a[disabled] {
    color: grey;
    cursor: not-allowed;
}

div.container {
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
}

.gradient-container {
    position: relative;
    overflow: hidden;
}

.gradient-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure content stays above the gradient */
.gradient-container > * {
    position: relative;
    z-index: 2;
}