body {
    min-height: 100vh;
    display: flex;
    font-family: 'SF pro', monospace;
    flex-direction: column;
    transition: background-color 0.3s, color 0.3s;
    background-color: #1a1a1a;
    color: #ffffff;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0px;
    margin: 0;
}

h1 {
    color: #00ffcc;
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    text-align: center;
    padding: 20px;
    margin: 20px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: inherit;
    width: 100%;
    margin-top: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color:rgb(222, 222, 222);
}

.dark-accounts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.dark-account-card {
    background-color: #282828;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 200px;
}

.dark-account-card img {
    width: 100px;
    height: 100px;
    border-radius: 10%;
    object-fit: cover;
    margin-bottom: 10px;
}

.dark-account-card h3 {
    color: #00ffcc;
    margin-bottom: 5px;
}

.dark-account-card p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 0;
}
.like-button, .unlike-button {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    width: auto; 
    min-width: 100px; 
}

.like-button {
    background-color: #00ffcc; 
    color: #222;
}

.like-button:hover {
    background-color: #00cc99; 
    transform: scale(1.05);
}

.unlike-button {
    background-color: #ff3366; 
    color: #fff;
}

.unlike-button:hover {
    background-color: #cc0033; 
    transform: scale(1.05);
}
 .button-container {
    display: flex;
    gap: 10px; 
    justify-content: center; 
    margin-top: 10px;
}



.profile-container {
    background-color: #282828;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 600px;
    margin-top: 20px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px; /* Adjust the spacing between avatar and name */
    margin-bottom: 20px;
}

.profile-avatar {
    width: 100px; /* Adjust the size as needed */
    height: 100px; /* Adjust the size as needed */
    border-radius: 50%; /* Make it circular */
    overflow: hidden; /* Hide any part of the image that goes outside the circle */
    border: 2px solid #ccc; /* Optional: Add a border */
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and cover the entire container */
}

.profile-name-container{
    display: flex;
    flex-direction: column;
}


.profile-avatar-chat {
    width: 50px;
    height: 50px;
    border-radius: 40%;
    object-fit: cover;
}

.profile-info h2 {
    color: #00ffcc;
    margin-bottom: 10px;
}

.profile-info p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 5px;
}
.profile-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.profile-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center; 
}

.profile-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-align: center;
     font-size: 16px;
}

.profile-button:hover {
    background-color: #0056b3;
}
.profile-button.exit {
    background-color: #dc3545; 
    border: 2px solid #990000; 
    padding: 12px 24px; 
    font-weight: bold; 
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.profile-button.exit:hover {
    background-color: #c82333; 
}


.hidden {
    display: none;
}


#map {
    height: 400px; /* Или любая другая желаемая высота */
    width: 100%; /* Или любая другая желаемая ширина */
    border: 1px solid #ccc; /* Добавим границу, чтобы было лучше видно */
}
