body,
html
{
	margin: 0;
	font-size: 14px;
	color: #000;
	height: 100vh;
}

.map-container
{
  position: relative;
  background-color: #f4f4f4 !important;
  min-height: 650px;
}

.gis-header {
  background: white;
  color: #000;
  padding: 15px 20px;
  font-size: 36px;
  font-weight: 600;
}
.gis-header-title span{
	color: #1155cc;
	margin-left: 7px;
}

.bank-card {
    position: absolute;
    top: 20px;
    left: 50px;
    width: 300px;
    min-height: 450px;
    background: white;
    color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.bank-card-inner {
    display: flex;
    flex-direction: column;
    padding: 15px 15px 20px 15px;
}

.bank-header {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
    background-color:#4a86e8;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.bank-logo {
  width: 70px;
  height: 45px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  border-radius: 5px;
}

.bank-logo img
{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bank-details {
    flex: 1;
}

.bank-name {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    margin-left:15px;
}

.bank-photo {
    width: 100%;
    height: 180px;
    background: #f0f0f0 center/cover;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.1);
}

.branch-label {
    color: black;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    padding-top: 5px;
}

.bank-address {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.bank-status {
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #333;
    gap: 6px;
}

.status-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.open-now {
    color: #4CAF50;
    font-weight: 500;
}

.closing-soon {
    color: #FF9800;
    font-weight: 500;
}

.closed-now {
    color: #f44336;
    font-weight: 500;
}

.arrow-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
    color: #333;
    font-size: 12px;
    margin-left: 4px;
}

.arrow-icon:hover {
    color: #000;
}

.arrow-icon.rotated {
    transform: rotate(180deg);
}

.schedule-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 0px;
}

.schedule-dropdown.open {
    max-height: 250px;
}

.schedule-content {
    background: #ffffff;
    border-radius: 6px;
    padding: 12px;
}

.schedule-day {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 12px;
}

.schedule-day .day {
    color: #333;
    font-weight: 500;
}

.schedule-day .hours {
    color: #666;
}

.bank-phone {
    font-size: 13px;
    margin-top: 5px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon {
    font-size: 14px;
    opacity: 0.8;
    flex-shrink: 0;
}

.icon i {
    color: #4285f4;
    font-size: 16px;
}
#map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.map-controls {
    position: absolute;
    top: 20px;
    left: 380px;
    z-index: 1000;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    display: flex;
    overflow: hidden;
}

.control-button {
    padding: 8px 10px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 12px;
    border-right: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    min-width: 80px;
}

.control-button:first-child {
    border-radius: 4px 0 0 4px;
}

.control-button:last-child {
    border-right: none;
    border-radius: 0 4px 4px 0;
}

.control-button:hover {
    background: #f5f5f5;
}

.control-button.active {
    background: #4285f4;
    color: white;
}

.control-button.active:hover {
    background: #3367d6;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    background: #f8f9fa;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4285f4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.branches-modal {
    position: absolute;
    top: 20px;
    right: 50px;
    width: 300px;
    min-height: 450px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1001;
    transition: all 0.3s ease;
}

.modal-header {
    background: #ffffff;
    padding: 18px 20px;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.modal-header h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #2d3748;
}

.branches-container {
    max-height: 370px;
    overflow-y: auto;
    padding: 8px 0;
}

.branch-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 8px;
    border-radius: 8px;
    margin-bottom: 2px;
}

.branch-item:hover {
    background-color: #f8fafb;
    transform: translateX(2px);
}

.branch-item.active {
    background-color: #e3f2fd;
    border-left: 4px solid #4285f4;
    margin-left: 4px;
    transform: translateX(2px);
}

.branch-icon {
    margin-right: 12px;
    color: #4285f4;
    font-size: 16px;
}

.branch-info {
    flex: 1;
}

.branch-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.branch-location {
    font-size: 12px;
    color: #666;
}

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
  bottom: 24px!important;
}
