/* File: public_site\static\css\styles.css */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.pin {
    width: 24px;
    height: 24px;
    background-color: #d9534f;
    border-radius: 50% 50% 50% 0;
    position: relative;
    transform: rotate(-45deg);
    cursor: pointer;
    border: 1px solid #000000; /* Border */
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4); /* Add shadow to give depth */
}

.pin::after {
    content: '';
    width: 10px; /* Smaller size for inner circle */
    height: 10px;
    background: #8b0000; /* Darker color for the inner circle */
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg-warning {
    background-color: #ff8500 !important; /* Richer orange */
    color: #fff; /* Ensure text is readable */
}

.bg-water-droplets {
    background-image: url('../images/water_droplets.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}
