#dnn_FullScreenPaneAB{
	height: fit-content;
}
        .container-gh {
            max-width: 800px;
            margin: 0 auto;
            background-color: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        h1 {
            color: #2c3e50;
            margin-bottom: 20px;
        }
        .content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        .compass-section {
            flex: 1;
            min-width: 300px;
        }
        .map-section {
            flex: 1;
            min-width: 300px;
        }
        #compass {
            width: 250px;
            height: 250px;
            margin: 0 auto;
            position: relative;
            border: 8px solid #34495e;
            border-radius: 50%;
            background-color: #ecf0f1;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
        }
        #arrow {
            position: absolute;
            width: 4px;
            height: 110px;
            background-color: #e74c3c;
            left: 123px;
            top: 15px;
            transform-origin: bottom center;
            transition: transform 0.1s ease;
            z-index: 2;
            border-radius: 2px;
        }
        #qibla-arrow {
            position: absolute;
            width: 4px;
            height: 90px;
            background-color: #27ae60;
            left: 123px;
            top: 25px;
            transform-origin: bottom center;
            z-index: 1;
            border-radius: 2px;
        }
        .compass-mark {
            position: absolute;
            color: #7f8c8d;
            font-weight: bold;
        }
        #map {
            height: 300px;
            width: 100%;
            border-radius: 10px;
            border: 2px solid #ddd;
        }
        #info {
            margin-top: 20px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 10px;
            text-align: right;
        }
        #status {
            font-weight: bold;
            margin-bottom: 10px;
        }
        .accuracy {
            font-size: 14px;
            color: #7f8c8d;
        }
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(0,0,0,0.1);
            border-radius: 50%;
            border-top-color: #3498db;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
            vertical-align: middle;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        .map-controls {
            margin-top: 10px;
        }
        button {
            padding: 8px 15px;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            margin: 5px;
        }
        button:hover {
            background-color: #2980b9;
        }
        .custom-icon {
            background: none;
            border: none;
        }