Agricrop / components /AgriculturalFormOverlay.css
Rohanbagulwar
Commitingcode
7c2c194
raw
history blame contribute delete
935 Bytes
.map-overlay-recommendations {
position: absolute;
right: 20px;
bottom: 20px;
max-width: 420px;
width: calc(30vw + 120px);
background: rgba(27, 2, 2, 0.96);
color: #0f172a;
padding: 14px 16px;
border-radius: 10px;
box-shadow: 0 8px 30px rgba(16, 24, 40, 0.2);
z-index: 1200;
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}
.map-overlay-recommendations .overlay-inner {
display: flex;
flex-direction: column;
gap: 8px;
}
.map-overlay-recommendations .overlay-header h3 {
margin: 0;
font-size: 1.05rem;
}
.map-overlay-recommendations .recommendation-content {
max-height: 48vh;
overflow: auto;
font-size: 0.95rem;
line-height: 1.4;
}
/* Small screens: make overlay slightly larger and centered */
@media (max-width: 768px) {
.map-overlay-recommendations {
left: 10px;
right: 10px;
bottom: 14px;
width: auto;
max-width: none;
}
}