@charset "utf-8";
/* CSS Document */


 body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }
        
        header {
            background: #333;
            color: #fff;
            padding-top: 30px;
            min-height: 70px;
            border-bottom: #77aaff 3px solid;
        }
        
        img {
            width: 100%;
            max-width: 200px;
            height: 100%;
            height: auto;
            margin-top: 20px;
        }
        
        
        .container {
            width: 80%;
            margin: auto;
            text-align: center;
            overflow: hidden;
        }
        .menu {
            text-align: center;
            margin: 20px 0;
        }
        .menu button {
            background-color: #ff5733;
            color: #fff;
            border: none;
            padding: 15px 30px;
            margin: 10px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .menu button:hover {
            background-color: #c70039;
        }

        
        .qrcodeimg {
            width: 100%;
            max-width: 400px;
            height: 100%;
            height: auto;
            margin-top: 20px;
        }
        .show-banner {
            background: #77aaff;
            color: #fff;
            padding: 10px;
            text-align: center;
            margin: 20px 0;
            border: 3px solid green;
        }
        .show-status {
            padding: 20px;
            text-align: center;
        }
        .show-status p {
            font-size: 18px;
        }
        .show-status .open {
            color: green;
        }
        .show-status .over {
            color: red;
        }
        .show-status .no-show {
            color: gray;
        }
        .show-list {
            background: #fff;
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .show-list h2 {
            text-align: center;
            color: #333;
        }
        .show-list ul {
            list-style: none;
            padding: 0;
        }
        .show-list ul li {
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }
        .show-list ul li:last-child {
            border-bottom: none;
        }
        .show-image {
            text-align: center;
            margin: 20px 0;
        }
        .show-image img {
            max-width: 500px;
            height: 100%;
            height: auto;
            margin-top: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
            .signow {
            font-size: 1.5em; 
            padding: 15px 25px; 
            background-color: #4CAF50; 
            color: white; 
            border: none; 
            border-radius: 8px; 
            cursor: pointer;
            }
            
.cashapp-button {
    background-color: #00C244; /* Cash App green */
    color: white;
    Padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
            
        }

 .cashapp-button:hover {
     background-color: #009933;
     }
     
     
     ul {
  list-style: none; /* Remove list bullets */
  padding: 0;
  margin: 0;
}

li {
  padding-left: 16px;
}

li::before {
  content: "•"; /* Insert content that looks like bullets */
  padding-right: 8px;
  color: blue; /* Or a color you prefer */
}