

.mobile-view {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 20px;
}

.desktop-view {
    display: none;
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #E3E6FC;
    border-radius: 8px;
}

td {
    padding: 20px;
    border: 1px solid #E3E6FC;
}

.bg-white {
    background-color: white;
}

.bg-light-purple {
    background-color: #F8F7FF;
}

.text-lg {
    font-size: 18px;
}

.text-xl {
    font-size: 24px;
}

.font-bold {
    font-weight: bold;
}

.text-orange {
    color: #F5A534;
}

.text-gray {
    color: #716C85;
}

.text-sm {
    font-size: 14px;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 4px;
}

.gap-3 {
    gap: 12px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.pb-5 {
    padding-bottom: 20px;
}

.px-5 {
    padding-left: 20px;
    padding-right: 20px;
}

.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.border-b {
    border-bottom: 1px solid #E3E6FC;
}

.transition-all {
    transition: all 0.9s ease-in-out !important;
}
.transition-transform {
    transition: transform 300ms !important;
}

.overflow-hidden {
    overflow: hidden;
}

.max-h-0 {
    max-height: 0;
}

.max-h-200 {
    max-height: 200px;
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

.font-medium{
    font-weight: 400;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .mobile-view {
        display: none;
    }

    .desktop-view {
        display: block;
    }
}