body {
    margin: 0;
    background-color: #706c6c;
}

img {
    cursor: pointer;
}

#clients {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1px;
    width: 90%;
}

.client-item {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffffff;
    border-radius: 3px;
    background: #a79f9f;
    position: relative;
}

.client-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.5s;
}

.client-circle:hover {
    transform: scale(0.8);
}

.client-header {
    display: flex;
    width: 100%;
}

.client-id {
    font-weight: bold;
    margin-right: 10px;
}

/* Style for color selection */
.color-picker {
    display: none;
    background-color: rgb(88, 85, 85);
    border: 1px solid #ccc;
    padding: 1px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 1px;
    width: 150px;
    /* حجم مناسب */
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 2000;
    flex-wrap: wrap;
    gap: 1px;
}

.color-option {
    width: 20px;
    height: 20px;
    align-items: flex-start;
    border-radius: 50%;
    margin: 1px 0;
    cursor: pointer;
}

#map {
    background-color: #706c6c;
    display: flex;
    width: 100%;
    height: 100%;
    flex-grow: 1;
}

.contener {
    width: 100%;
    height: 100vh;
    background-color: #706c6c;
    display: grid;
    grid-template-columns: 35px auto;
    grid-template-rows: 0px auto 35px;
    gap: 1px;
    z-index: 1;
}

.item {
    display: flex;
    background-color: rgb(137, 142, 146);
    text-align: center;
    padding: 0px;
}

.item-tols {
    width: 100%;
    height: 100%;
    display: flex;
    grid-column: 1/3;
}

.item-copy {
    text-align: left;
    grid-column: 1/3;
    color: wheat;
    height: 10px;

}

.list {
    width: 100%;
    height: 100%;
    background-color: rgb(157, 157, 154);
    text-align: center;
    border: 1px solid rgb(96, 103, 17);
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1px;
}

@media (max-width: 600px) {
    .contener {
        grid-template-rows: 25 auto 25px;
    }
}

input[type='button'] {
    color: white;
    background-color: rgb(0, 0, 0);
}

.leaflet-control-attribution {
    display: none !important;
}

.contener-tools {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    /* Optional: Add a semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.tools-content {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-items: left;
    gap: 1px;
    background-color: #ccc;
    opacity: 1;
    padding: 10px;
    margin: 10px;
    border: 1px solid #676008;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;

}
