﻿input.no-spinner::-webkit-outer-spin-button,
input.no-spinner::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input.no-spinner[type=number] {
    -moz-appearance: textfield;
}
  /* Success Message Container */
  .success-container {
            position: fixed;
            top: 60px;
            right: 20px;
            background: rgba(0, 150, 136, 0.9); /* Transparent Green */
            color: white;
            padding: 15px 25px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(-20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            backdrop-filter: blur(12px);
            min-width: 280px;
            z-index: 1000;
            overflow: hidden;
        }

 /* Checkmark Animation */
   .checkmark {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #009688;
            font-size: 18px;
            font-weight: bold;
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
            transform: scale(0);
            animation: popIn 0.3s ease forwards 0.2s;
        }

  /* Progress Bar */
   .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #4CAF50, #8BC34A);
            animation: progress 5s linear forwards;
            border-radius: 0 0 8px 8px;
        }

  /* Animations */
   @keyframes progress {
            from {
                width: 100%;
            }

            to {
                width: 0%;
            }
        }

   @keyframes popIn {
            from {
                transform: scale(0);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }