body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #ffa500;
    padding: 1em;
    text-align: center;
    border-bottom: 2px solid #ffa500;
}
/* Добавьте или измените правило для #searchResult */
#searchResult {
    width: calc(100% - 4cm);
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 2cm auto;
    background-color: #f9f9f9;
}

main {
    padding: 2em;
}

nav {
    margin-bottom: 1em;
}

nav button {
    background-color: #ffa500;
    color: #333;
    border: none;
    padding: 0.5em 1em;
    margin-right: 0.5em;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

nav button:hover {
    background-color: #ff8c00;
}

section {
    background-color: #1e1e1e;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

section:hover {
    transform: scale(1.02);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 0.5em;
    color: #ffa500;
}

input, textarea, button {
    margin-bottom: 1em;
    padding: 0.5em;
    border: 1px solid #ffa500;
    border-radius: 5px;
    background-color: #333;
    color: #ffffff;
}

button {
    background-color: #ffa500;
    color: #333;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #ff8c00;
}

/* Изменённые стили для окна уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: -350px; /* немного больше, чтобы она скрывалась за экраном */
    background-color: #333;
    color: #ffa500;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: right 0.5s ease-in-out;
    display: inline-block;
    width: auto;
    max-width: 90%;
}

.notification.show {
    right: 20px;
}

#profileImage {
    border-radius: 50%;
    border: 2px solid #ffa500;
    transition: transform 0.3s ease-in-out;
}

#profileImage:hover {
    transform: scale(1.1);
}

.profile-card {
    background-size: cover;
    background-position: center;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    position: relative;
}

.developer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

.avatar {
    border-radius: 50%;
    border: 2px solid #ffa500;
    transition: transform 0.3s ease-in-out;
}

.avatar:hover {
    transform: scale(1.1);
}

.drop-zone {
    border: 2px dashed #ffa500;
    padding: 1em;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.drop-zone:hover {
    background-color: #333;
}

.file-input {
    display: none;
}

.mini-profile-background {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-top: 1em;
}