﻿.responsive-title {
    font-size: 48px; /* desktop default */
}

.scrollable-list {
    height: 400px; /* fixed height */
    overflow-y: auto; /* vertical scrollbar if content overflows */
    background-color: #f8f8f8; /* optional: nice background */
    border-radius: 4px; /* optional styling */
}

.wizzard-height {
    height: 480px;
}
/* Tablet */
@media (max-width: 768px) {
    .responsive-title {
        font-size: 32px;
    }

    .scrollable-list {
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .responsive-title {
        font-size: 20px;
    }
}
