/* Genel Stiller */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
}

main {
    margin: 35px;
}

header {
    background-color: orange;
    padding: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: rgb(161, 70, 70);
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

footer {
    bottom: 0;
    left: 0;
    background-color: orange;
    color: rgb(161, 70, 70);
    text-align: center;
    padding: 20px;
}

button#scroll-to-top {
    background-color: transparent;
    border: none;
    color: rgb(161, 70, 70);
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    padding: 10px 20px;
}

button#scroll-to-top:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

button#scroll-to-top:active {
    background-color: rgba(255, 255, 255, 0.4);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #007bff; 
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 8px 0; 
    min-width: 160px;
    z-index: 1;
    top: 100%;
}

.dropdown-content a {
    color: #fff;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: orange;
}

.dropdown.active .dropdown-content {
    display: block;
}

#comments-section {
    margin-top: 50px;
}

#comments-section h2 {
    margin-bottom: 20px;
}

#comment-form label {
    display: block;
    margin-bottom: 5px;
}

#comment-form input[type="text"],
#comment-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#comment-form button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#comment-form button[type="submit"]:hover {
    background-color: #0056b3;
}

.comment {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.comment p {
    margin-bottom: 5px;
}

.comment .author {
    font-weight: bold;
    margin-bottom: 5px;
}

#main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

#auth-buttons {
    float: right;
    margin-right: 20px;
    position: absolute;
    top: 20px;
    right: 5px;
}


.auth-button {
    padding: 8px 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}

.auth-button:hover {
    background-color: #0056b3;
}

