#visualizer {
            width: 100%;
            height: 200px;
            background: white;
            margin-bottom: 20px;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
        }
        
        .volume-meter {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 10px;
        }
        
        .volume-label {
            font-weight: 500;
            color: #555;
            min-width: 80px;
        }
        
        .volume-bar {
            flex: 1;
            height: 20px;
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .volume-level {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #4caf50, #8bc34a);
            border-radius: 10px;
            transition: width 0.1s ease;
        }
        
        .volume-percent {
            font-weight: 600;
            min-width: 50px;
            text-align: right;
            color: #4caf50;
        }
        
        .status-card {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 5px 10px;
			color:#dc3848;
            background: #fff0f1;
            border: 1px solid #efdcde;
        }
     .status-card.active {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 5px 10px;
			color:#41a458;
            background: #f0faf2;
            border: 1px solid #ddeee1;
        }    
        .status-indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #f44336;
        }
        
        .status-indicator.active {
            background: #4caf50;
            box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
        }
        
        .ax-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
            box-shadow: none !important;
        }
        
        .ax-btn:not(:disabled):hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .ax-btn:not(:disabled):active {
            transform: translateY(1px);
        }
        
        .recording-info {
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin-top: 15px;
            border: 1px solid #e0e0e0;
        }
        
        .recording-time {
            font-size: 2.4rem;
            font-weight: 700;
            color: #1e88e5;
            margin: 10px 0;
            font-family: monospace;
            text-align: center;
        }
        
        .recording-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        
        .stat-card {
            background: #f5f5f5;
            border-radius: 10px;
            padding: 15px;
            min-width: 120px;
            text-align: center;
            border: 1px solid #e0e0e0;
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e88e5;
            margin: 5px 0;
        }
        
        .stat-label {
            color: #666;
            font-size: 0.95rem;
        }
        
        
        audio {
            width: 100%;
            margin-top: 15px;
            border-radius: 30px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }