﻿
    .back-button {
      display: inline-block;
      padding: 8px 14px;
      font-size: 14px;
      font-family: Arial, sans-serif;
      background-color: #4c90af;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .back-button:hover {
      background-color: #45a049;
      transform: scale(1.05);
    }

    .back-button:active {
      transform: scale(0.95);
    }
  