/* Base styling for the app */

.glassmorphism {
    background: rgba(21, 28, 44, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Row animations */
.info-row {
    transition: all 0.2s ease;
}

.info-row:hover {
    background-color: rgba(30, 41, 59, 0.5);
    border-radius: 0.375rem;
    /* rounded-md */
    padding-left: 0.5rem;
    margin-left: -0.5rem;
}

/* Feature badges */
.feature-badge {
    transition: all 0.2s ease;
}

.feature-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.battery-fill {
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}