body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

.logo {
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
}
    
        .rating-summary { font-size: 18px !important; color: #f5b301 !important; margin-left: 10px !important; vertical-align: middle !important; }
        .stars { color: #f5b301 !important; }
        #yorum-formu {
            background: #fdfdfd !important;
            padding: 20px !important;
            border-radius: 8px !important;
            margin-top: 20px !important;
            border: 1px solid #eee !important;
        }
        #yorum-formu h3 {
            margin-top: 0 !important;
            margin-bottom: 20px !important;
        }
        .form-group {
            margin-bottom: 20px !important;
            width: 100%;
        }
        .form-group label {
            display: block !important;
            margin-bottom: 8px !important;
            font-weight: bold !important;
            text-align: left !important;
        }
        .form-group input[type="text"],
        .form-group textarea {
            width: 100% !important;
            padding: 12px !important;
            font-size: 16px !important;
            border-radius: 5px !important;
            border: 1px solid #ccc !important;
            box-sizing: border-box !important;
        }
        /* Yıldız puanlama için */
        .star-rating {
            display: flex !important;
            flex-direction: row-reverse !important;
            justify-content: flex-end;
        }
        .star-rating input[type="radio"] {
            display: none !important;
        }
        .star-rating label {
            font-size: 2.2em !important;
            color: #ddd !important;
            cursor: pointer !important;
            transition: color 0.2s !important;
            padding: 0 3px !important;
        }
        .star-rating input[type="radio"]:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #f5b301 !important;
        }
        
        /* --- Hamburger Menü Stilleri --- */
        .hamburger-menu {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
        }
        .menu-btn {
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 5px;
            padding: 10px;
            cursor: pointer;
            font-size: 24px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .side-nav {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 1000;
            top: 0;
            left: 0;
            background-color: #f8f9fa;
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;
            border-right: 1px solid #ddd;
        }
        .side-nav a {
            padding: 10px 15px;
            text-decoration: none;
            font-size: 18px;
            color: #333;
            display: block;
            transition: 0.3s;
            border-bottom: 1px solid #eee;
        }
        /* YENİ EKLENEN STİLLER */
        .status-badge {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8em;
            font-weight: bold;
            color: #fff;
            margin-left: 10px;
        }
        .status-badge.open { background-color: #28a745; }
        .status-badge.closed { background-color: #dc3545; }    
    
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

form .form-row {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 600px;
}

.search-box {
    padding: 16px 5px;
    font-size: 16px;
    flex: 1;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    width: 45%;
}

.search-box:focus {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-color: rgba(223, 225, 229, 0);
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.btn {
    font-size: 14px;
    padding: 10px 20px;
    border: 1px solid #dfe1e5;
    background-color: #f8f9fa;
    color: #3c4043;
    border-radius: 4px;
    cursor: pointer;
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.btn:hover {
    background-color: #f1f3f4;
}

hr {
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    border-top: 1px solid #ccc;
}

.profile-container {
    max-width: 700px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: left;
    width: 100%;
}

.profile-container h2 {
    color: #1a0dab;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.profile-item {
    margin: 15px 0;
    font-size: 16px;
}

.profile-item strong {
    display: inline-block;
    color: #333;
}

.links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.links a {
    width:100%;
    padding: 10px 10px;
    background-color: #e8f0fe;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.links a:hover {
    background-color: #d2e3fc;
}

.edit-link {
    margin-top: 20px;
    text-align: center;
}

.edit-link a {
    color: #f16804;
    text-decoration: none;
}

.edit-link a:hover {
    text-decoration: underline;
}