#mapid {
    height: 700px;
    width: 100%;
 }

html {scroll-behavior: smooth;}

#btnScroll{
    display:none;
    position:fixed;
    bottom:20px;
    left:20px;
    z-index:99;
    cursor:pointer;
}

.btn-success,
.btn-danger {
    color: white !important;
}

.news-submission-container {
    width: 80%; /* Width of the rectangular container */
    margin: 20px auto; /* Centering the container */
    border: 1px solid #ccc; /* Optional border for visualization */
    padding: 20px; /* Space inside the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow for a lifted effect */
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.form-control {
    border-radius: 0;
    box-shadow: none;
    border-color: #d1d1d1;
}

.form-control:focus {
    border-color: #1e88e5;
    box-shadow: none;
}


.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border: none;
}
.card:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
    text-shadow: 0px 1px 1px rgba(22, 26, 30, 0.2);
    transition: 0.3s;
}

.card .text-muted i {
    margin: 0 10px;
}
.card-body h5 {
    font-weight: 600;
}
.text-muted i {
    margin: 0 5px;
}


.blur-effect {
    filter: blur(5px);
    pointer-events: none;
}

.no-shadow {
    box-shadow: none !important;
}

.border-warning {
    border: 2px solid yellow !important;
    box-shadow: none !important;
}

.like-btn {
        border: none;
        background: none;
        padding: 0;
        margin: 0;
        cursor: pointer;
    }
.like-btn:focus {
        outline: none;
    }

/* Стили для кнопки */
#backToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Скрыта по умолчанию */
    padding: 12px 20px; /* Большой размер */
    font-size: 18px;
}

/* Стили для мобильных устройств */
@media only screen and (max-width: 768px) {
    #backToTopBtn {
        padding: 6px 10px; /* Меньший размер */
        font-size: 12px;
    }
}

.password-strength {
    height: 10px;
    width: 0%;
    transition: width 0.5s ease; /* Добавлено для анимации */
}