.paper-texture {
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,0.01) 0px,
            rgba(0,0,0,0.01) 1px,
            transparent 1px,
            transparent 2px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0,0,0,0.01) 0px,
            rgba(0,0,0,0.01) 1px,
            transparent 1px,
            transparent 2px
        );
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #A78BFA 0%, #EC4899 100%);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 3px solid #A78BFA;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 3px solid #A78BFA;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media print {
    @page {
        size: 8.5in 11in;
        margin: 0;
    }
}