@charset "utf-8";
/* CSS Document */

body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.close-container {
    max-width: 600px;
    margin: 100px auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

h1 {
    color: #2e92b5;
    margin-bottom: 20px;
}

.btn-simple-solid {
  background: #2e92b5;
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-simple-solid:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.btn-simple-solid:active {
  transform: translateY(0);
}