﻿.heartbeat {
    color: red;
    font-size: 15px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@media print {
    /* Print ke time par jo bhi chiz nahi chahiye, unko hide karein */
    .no-print {
        display: none !important;
    }
}

.no-number-controls {
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none;
}

    .no-number-controls::-webkit-inner-spin-button,
    .no-number-controls::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }


.search-bar {
    width: 300px;
}

.search-dropdown {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
}

    .search-item:hover {
        background: #f8f9fa;
    }

.search-title {
    font-weight: 600;
    font-size: 14px;
}

.search-group {
    font-size: 12px;
    color: gray;
}

.search-item.active {
    background: #e9ecef;
}

.search-subtitle {
    font-size: 12px;
    color: #6c757d;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}