:root {
    --bg-color: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --accent: #38bdf8;
    --accent-glow: rgba(56, 189, 248, 0.3);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --success: #10b981;
    --danger: #f43f5e;
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-btn-bg: rgba(255, 255, 255, 0.05);

    /* Safe Areas for iPhone 15 Pro Max */
    --safe-top: env(safe-area-inset-top, 20px);
    --safe-bottom: env(safe-area-inset-bottom, 20px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    /* Telegram fullscreen header offset (set via JS) */
    --tg-header-top: 0px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

input, textarea, select {
    font-size: 16px !important;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    overscroll-behavior-y: none; /* Prevent swipe-to-close bounce */
}

.app-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, #1e3a8a 0%, #0f172a 70%);
    z-index: -1;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    /* Reduced side padding to 3% to gain space */
    padding: calc(var(--safe-top) + var(--tg-header-top) + 0.8rem) 3% 1rem;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.8);
}

.logo h1 {
    font-size: 1.25rem; /* Slightly smaller for mobile */
    font-weight: 600;
    letter-spacing: -0.8px;
    flex-shrink: 1;
}

.logo span {
    color: var(--accent);
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding-bottom respects the home indicator swipe bar */
    padding: 0 calc(var(--safe-left) + 20px) calc(var(--safe-bottom) + 30px) calc(var(--safe-right) + 20px);
}

.search-container {
    max-width: 500px;
    margin: 20px auto 2rem;
    padding: 0 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

#searchInput {
    flex: 1;
    min-width: 0;
    padding: 16px 24px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px; /* Pill search */
    color: white;
    font-family: inherit;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#searchInput:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    background: rgba(30, 41, 59, 0.9);
}

.clinic-nav {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 30px; /* Pill clinic nav */
    border: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.clinic-nav .nav-btn {
    flex: 1;
    padding: 12px 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.clinic-nav .nav-btn.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}


.repair-filter-btn {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.repair-filter-btn.active {
    background: rgba(244, 63, 94, 0.15);
    border-color: var(--danger);
    color: var(--danger);
    box-shadow: 0 0 14px rgba(244, 63, 94, 0.35);
}

.floor-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.floor-nav .nav-btn {
    padding: 8px 14px;
    background: var(--nav-btn-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.floor-nav .nav-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: var(--accent);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cabinet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.count-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 6px;
}

.device-table {
    width: 100%;
    border-collapse: collapse;
}

.device-table td {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.device-row {
    -webkit-user-select: none; /* Disable text selection for iOS */
    user-select: none;
    -webkit-touch-callout: none; /* Disable native context menu for iOS */
    cursor: pointer;
    transition: background 0.2s;
}

.device-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.device-row.long-press-active {
    transform: scale(0.98);
    background: rgba(244, 63, 94, 0.1) !important;
    opacity: 0.8;
    transition: all 0.1s ease;
}

.device-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 8px;
}

.device-cell-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.meta-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    min-width: 0;
}

.meta-right {
    flex-shrink: 0;
}

.device-inv {
    font-weight: 600;
    color: var(--text-muted);
}

.inspection-date {
    color: var(--text-muted);
}

.next-maintenance {
    font-weight: 600;
    font-size: 0.75rem;
}

.next-maintenance.maint-safe { color: var(--accent); }
.next-maintenance.maint-warning { color: #facc15; }
.next-maintenance.maint-overdue { color: var(--danger); }

.inspection-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    opacity: 1; /* Full visibility */
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin: 20px 0;
    max-height: 400px;
    overflow-y: auto;
    overscroll-behavior: contain; /* Isolate scroll from main window */
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    cursor: pointer;
}

.timeline-dot {
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    border: 3px solid var(--bg-color);
}

.timeline-item.important .timeline-dot {
    background: var(--accent);
}

.timeline-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.timeline-content {
    font-size: 0.95rem;
}

.maintenance-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.hidden-form {
    display: none;
    margin-top: 20px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#maintenanceNotes {
    background: rgba(0, 0, 0, 0.3);
}

.btn-maintenance, .btn-submit, #showMaintenanceForm {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    border: none;
    border-radius: 30px; /* Fully rounded pill */
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    margin: 10px 0;
}

.btn-maintenance:hover, .btn-submit:hover, #showMaintenanceForm:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
    filter: brightness(1.1);
}

.btn-cancel {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    border-radius: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.text-muted { color: var(--text-muted); }

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-ok .dot { background: var(--success); box-shadow: 0 0 8px var(--success); }
.status-err .dot { background: var(--danger); box-shadow: 0 0 8px var(--danger); }
.status-maint .dot { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }

.status-ok { color: var(--success); }
.status-err { color: var(--danger); }
.status-maint { color: #f59e0b; }

.btn-row { display: flex; flex-direction: column; gap: 5px; align-items: stretch; }
.btn-row .mini-report-btn { min-width: 64px; display: flex; align-items: center; justify-content: center; }
.status-change-btn { min-width: unset; }
.meta-right { align-self: flex-start; flex-shrink: 0; }
.status-change-btn.status-ok  { border-color: var(--success); color: var(--success); }
.status-change-btn.status-err { border-color: var(--danger);  color: var(--danger);  }
.status-change-btn.status-maint { border-color: #f59e0b; color: #f59e0b; }

.quick-status-btns { display: flex; gap: 10px; }
.qs-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 12px 8px; border-radius: 12px; border: 2px solid transparent;
    font-size: 0.9rem; font-weight: 600; cursor: pointer; background: rgba(255,255,255,0.05);
    color: var(--text-muted); transition: all 0.2s;
}
.qs-dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.qs-ok  { color: var(--success); }
.qs-broken { color: var(--danger); }
.qs-maint  { color: #f59e0b; }
.qs-btn.active { border-color: currentColor; background: rgba(255,255,255,0.1); }

.inspection-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch; /* Stretch children to fill width */
    width: 100%;
}

.mini-report-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.mini-report-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-main);
}

.call-btn {
    background: rgba(244, 63, 94, 0.08);
    border-color: rgba(244, 63, 94, 0.4);
    color: var(--danger);
}

.call-btn:hover {
    background: rgba(244, 63, 94, 0.18);
    border-color: var(--danger);
    color: var(--danger);
}

.report-btn {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.report-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--text-muted);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1e293b;
    margin: 5% auto;
    padding: 30px 30px calc(var(--safe-bottom) + 30px);
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
}

textarea {
    width: 100%;
    height: 120px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    padding: 15px;
    margin: 15px 0;
    font-family: inherit;
    resize: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-time-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

#system-date {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
}

#system-time {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.modal-body textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 16px !important;
    text-align: center;
    transition: border-color 0.3s;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.attachment-area {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-attach {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed var(--glass-border);
    border-radius: 25px;
    padding: 12px;
    color: var(--accent);
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-top: 30px !important;
    width: 100% !important;
}

.modal-actions .btn-cancel, 
.modal-actions .btn-submit {
    width: 100% !important;
    flex: none !important; /* Disable flex for grid */
    margin: 0 !important;
    padding: 14px 5px !important;
    border-radius: 30px !important;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap !important;
    height: 48px !important; /* Fixed height for absolute equality */
}

/* Explicitly set same font features */
.modal-actions button {
    box-sizing: border-box !important;
    line-height: 1 !important;
}

.modal-actions .btn-submit {
    background: linear-gradient(135deg, var(--accent) 0%, #0369a1 100%) !important;
    border: 1px solid transparent !important;
    color: white !important;
}

.modal-actions .btn-cancel {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #94a3b8 !important;
}

.view.hidden { display: none; }

.app-nav {
    display: flex;
    background: rgba(255,255,255,0.05);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.nav-tab {
    padding: 12px 14px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-tab.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.dashboard-summary-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
    padding-bottom: calc(var(--safe-bottom) + 80px);
}

.summary-section {
    width: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-section {
    max-width: 280px;
    margin: 0 auto;
    padding: 8px !important;
}

.calendar-header-group h2 {
    font-size: 0.85rem;
    color: var(--text-main);
    margin: 0;
    text-align: center;
}

.calendar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding: 2px;
    border-radius: 8px;
    margin-top: 2px;
}

.current-month-label {
    min-width: 90px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.cal-nav-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    border-radius: 4px;
    padding: 1px 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.7rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    text-align: center;
    margin-top: 8px;
}

.cal-day-name {
    font-size: 0.55rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 2px;
}

.cal-day-name.is-weekend {
    color: #ff6b6b;
}

.cal-day {
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
    position: relative; /* Essential for dot positioning */
}

.cal-day.is-weekend {
    color: #ff6b6b;
}

.cal-day:hover {
    background: rgba(255,255,255,0.05);
}

.cal-day.today {
    color: var(--accent);
    font-weight: 700;
    border-color: rgba(56, 189, 248, 0.3);
}

.cal-day.selected {
    background: var(--accent);
    color: white !important;
    box-shadow: 0 0 15px var(--accent-glow);
}

.cal-day.has-activity {
    color: var(--accent);
    font-weight: 600;
}

.cal-day.has-activity::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent-glow);
}

.feed-search-wrap {
    margin-bottom: 14px;
}

.feed-search-wrap input {
    width: 100%;
    padding: 10px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

.feed-search-wrap input:focus {
    border-color: rgba(56, 189, 248, 0.5);
}

.feed-search-wrap input::placeholder {
    color: var(--text-muted);
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 70vh;
    overflow-y: auto;
    overscroll-behavior: contain; /* Isolate scroll from main window */
    padding-right: 10px;
}

.feed-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    padding: 12px 14px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.2s;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    cursor: pointer;
}

.feed-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 2px;
}

.feed-item.long-press-active {
    background: rgba(244, 63, 94, 0.1) !important;
    transform: scale(0.98);
}

.feed-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

.feed-date {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.feed-device {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.3;
}

.feed-issue {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.feed-status {
    font-size: 0.62rem;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid var(--accent-glow);
    padding: 2px 7px;
    border-radius: 4px;
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.loader {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

/* Floating Action Button */
.fab-btn {
    position: fixed;
    bottom: calc(var(--safe-bottom) + 20px);
    right: calc(var(--safe-right) + 20px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #0284c7 100%);
    border: none;
    color: white;
    font-size: 32px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(56, 189, 248, 0.4), 0 0 20px rgba(56, 189, 248, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 50px rgba(56, 189, 248, 0.6);
}

.fab-btn:active {
    transform: scale(0.95);
}
