body { 



font-family: 'Poppins', sans-serif;
  font-weight: 500;         /* Medium */
  font-size: 12px;
  color: #202020;           /* Dark gray (almost black) */
  line-height: 1.4; 
            padding: 20px;
            background: #f9f9f9;
        }
        
        h1 {
            margin-bottom: 20px;
            color: #333;
        }
        .message {
            margin: 10px 0;
            padding: 10px;
            border-radius: 4px;
            font-weight: bold;
        }
        .success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        .error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        form {
            margin-bottom: 30px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input[type="file"] {
            margin-bottom: 12px;
        }
        button {
            padding: 8px 15px;
            background-color: #007bff;
            border: none;
            color: white;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #0056b3;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border-radius: 6px;
            overflow: hidden;
        }
        th, td {
            padding: 12px 15px;
            border-bottom: 1px solid #ddd;
            text-align: left;
            vertical-align: middle;
        }
        th {
            background-color: #007bff;
            color: white;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        img.slider-img {
            height: 100px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .delete-form {
            margin: 0;
        }
        .delete-form button {
            background-color: #dc3545;
        }
        .delete-form button:hover {
            background-color: #b02a37;
        }
        .text_gray_h
        {
            color: rgb(153, 5, 5)
        }
        .gray_border {
            border: 1px solid rgb(71, 68, 68);
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
          }
          
          .hover-blink:hover .blink-icon {
            animation: blink 1s infinite;
          }
          
   