body {
    margin: 0;
    padding: 0;
    font-family: 'Tajawal', sans-serif;
    overflow: hidden;
    background-color: #f5f5f5;
}

.layout {
    display: flex;
    height: 100vh;
    width: 100vw;
}

#map {
    flex: 1;
    height: 100%;
}

#side {
    width: 300px;
    background: #fff;
    border-right: 1px solid #ccc;
    padding: 15px;
    overflow-y: auto;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.muted {
    color: #666;
    font-size: 0.9rem;
}

.error {
    color: #d32f2f;
    background-color: #ffebee;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    display: none;
    font-size: 0.9rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.9rem;
}

th,
td {
    padding: 8px;
    border-bottom: 1px solid #eee;
    text-align: right;
}

th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
    width: 40%;
}

td {
    color: #555;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #4285f4;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.2s;
    text-align: center;
}

.btn:hover {
    background-color: #3367d6;
}

@media (max-width: 600px) {
    .layout {
        flex-direction: column-reverse;
    }

    #side {
        width: 100%;
        height: 40%;
        border-right: none;
        border-top: 1px solid #ccc;
    }

    #map {
        height: 60%;
    }
}