* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.form-container {
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

.input-with-counter {
    position: relative;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
    min-height: 100px;
    font-size: 16px;
}

#title {
    min-height: 60px;
    width: calc(100% - 80px);
}

select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 16px;
    width: 70px;
}

.counter {
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 12px;
    color: #777;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 5px;
    border-radius: 3px;
}

button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

.results-container {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: none;
}

.results-container h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

#analysis-results {
    margin-bottom: 20px;
}

.result-item {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
}

.good {
    background-color: #d4edda;
    border-left: 5px solid #28a745;
}

.warning {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
}

.error {
    background-color: #f8d7da;
    border-left: 5px solid #dc3545;
}

#seo-score {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Öneri bölümü stilleri */
.suggestions-container {
    margin-top: 30px;
    padding: 15px;
    background-color: #e8f4fd;
    border: 1px solid #bedcf3;
    border-radius: 5px;
}

.suggestions-container h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.suggestion-item {
    margin-bottom: 20px;
    padding: 12px;
    background-color: white;
    border-left: 3px solid #3498db;
    border-radius: 3px;
    line-height: 1.5;
}

.suggestion-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

/* Yeni eklenen örnek gösterim stilleri */
.example {
    background-color: #f0f7ff;
    padding: 3px 6px;
    border-radius: 3px;
    font-weight: 500;
    border: 1px dashed #93c5fd;
    display: inline-block;
    margin: 5px 0;
    font-family: 'Consolas', monospace;
}

.suggestion-detail {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.suggestion-detail h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 16px;
}

.example-content {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 12px;
    margin: 10px 0;
    font-size: 14px;
}

.example-content h2 {
    font-size: 18px;
    margin: 10px 0 5px 0;
    color: #1e40af;
}

.example-content p {
    margin-bottom: 8px;
}

.example-content ul, .example-content ol {
    margin-left: 20px;
    margin-bottom: 10px;
}

.example-content li {
    margin-bottom: 5px;
} 