﻿/* Green button style */
.btn-green {
  background-color: #28a745; /* Green background */
  border-color: #28a745;
  color: #ffffff; /* White text */
}

.btn-green:hover,
.btn-green:focus {
  background-color: #218838;
  border-color: #1e7e34;
  color: #ffffff;
}

/* Blue button style */
.btn-blue {
  background-color: #007bff; /* Blue background */
  border-color: #007bff;
  color: #ffffff; /* White text */
}

.btn-blue:hover,
.btn-blue:focus {
  background-color: #0069d9;
  border-color: #0062cc;
  color: #ffffff;
}