<style>

/* Modal Stilleri */
/* auth-buttons stilini kaldırıyoruz
.auth-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 900;
    display: flex;
    gap: 10px;
}

.auth-btn {
    background: linear-gradient(to right, #ddcf9f, #c5b87d);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    background: linear-gradient(to right, #c5b87d, #b3a65e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(221, 207, 159, 0.4);
}
*/

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(to bottom, #c5b87d, #a99758);
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(197, 184, 125, 0.8);
    position: relative;
    border: 2px solid #8c7d3f;
}

.modal-content h2 {
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s;
}

.close:hover {
    color: #f0e5c9;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #8c7d3f;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
    background-color: #f0e5c9;
    color: #55492a;
    font-weight: 500;
}

.form-group input:focus {
    border-color: #6a5f2e;
    outline: none;
    box-shadow: 0 0 8px rgba(197, 184, 125, 0.8);
    background-color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #8c7d3f, #6a5f2e);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.submit-btn:hover {
    background: linear-gradient(to right, #6a5f2e, #4d452a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 207, 159, 0.5);
}

.error-message {
    color: #f44336;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.success-message {
    color: #4CAF50;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.user-profile {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 900;
    background: linear-gradient(to right, #ddcf9f, #c5b87d);
    padding: 10px 20px;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
}

.logout-btn {
    margin-left: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    text-decoration: underline;
}
</style>