 body {
     margin: 0;
     padding: 0;
     font-family: 'Helvetica Neue', sans-serif;
     background-color: #fce9f1;
     background-image: url("Images/adminBackground.jpg");
     background-position: center center;
     background-repeat: no-repeat;
     background-size: contain;
     height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .admin-container {
     background-color: rgba(255, 255, 255, 0.8);
     border-radius: 16px;
     padding: 40px;
     text-align: center;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
     max-width: 700px;
     width: 90%;
 }

 .logo-fixed {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid white;
     background-color: white;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
     margin-bottom: 20px;
 }

 h1 {
     color: #d63384;
     margin-bottom: 30px;
 }

 .admin-buttons {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     justify-content: center;
 }

 .admin-btn {
     background-color: white;
     border: 2px solid #ff69b4;
     color: #ff69b4;
     border-radius: 16px;
     padding: 20px;
     width: 200px;
     font-size: 1.1rem;
     font-weight: bold;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .admin-btn:hover {
     background-color: #ff69b4;
     color: white;
     transform: translateY(-4px);
 }

 .help-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1000;
 }

 .help-content {
     background: white;
     padding: 2rem;
     border-radius: 12px;
     max-width: 400px;
     text-align: center;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
 }

 .hidden {
     display: none;
 }

 .help-content details {
     margin: 1rem 0;
     text-align: left;
 }

 .help-content summary {
     cursor: pointer;
     font-weight: bold;
     font-size: 1rem;
 }

 .help-content summary:hover {
     color: #ff69b4;
 }