/* Genel stil ayarları */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.8;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

header {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}

header .logo {
    max-width: 150px;
    height: auto;
}

h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Form stil ayarları */
form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border-top: 4px solid #3498db;
}

label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #555;
}

select, button {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

select {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
}

button {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Eczane listesi stil ayarları */
.pharmacy-list {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db;
}

.pharmacy-list h2 {
    margin-top: 0;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.pharmacy-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pharmacy-list li {
    margin-bottom: 24px;
    padding: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #fafafa;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
}

.pharmacy-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #3498db;
    border-radius: 0 12px 12px 0;
}

.pharmacy-list li:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.pharmacy-list li h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.pharmacy-list li p {
    margin: 8px 0;
    color: #777;
}

.pharmacy-list li a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.pharmacy-list li a:hover {
    text-decoration: underline;
    color: #2980b9;
}
