 body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f9;
            margin: 0;
        }
        .header {
            background-color: green;
            padding: 10px;
            color: white;
            text-align: center;
        }
        .container {
            width: 80%;
            margin: 20px auto;
            text-align: center;
        }
        .daerah-button {
            background-color: #007BFF;
            color: white;
            padding: 10px 20px;
            font-size: 16px;
            margin: 10px;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            display: block;
            width: 100%;
            text-align: left;
        }
        .daerah-button:hover {
            background-color: #0056b3;
        }
        .masjid-list {
            display: none;
            background: white;
            border: 1px solid #ddd;
            margin-top: 5px;
            padding: 10px;
        }
        .masjid-list ul {
            list-style: none;
            padding: 0;
        }
        .masjid-list li {
            padding: 5px;
            text-align: left;
        }
        .masjid-list li:hover {
            background-color: #f2f2f2;
            cursor: pointer;
        }

        .popup-container-PTA {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .popup-content-PTA {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        }