/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Ana renkler */
:root {
    --primary-color: #e30613;
    --primary-dark: #b30000;
    --primary-light: #ff1a1a;
    --secondary-color: #333;
    --text-color: #444;
    --light-bg: #f8f9fa;
    --border-color: #eee;
    --hover-bg: #fff5f5;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --chart-bg: #f8f9fa;
    --header-height: 60px;
}

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.5;
}

/* Top Bar */
.top-bar {
    background: #333;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-ticker {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticker-label {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 12px;
}

.ticker-content {
    color: #fff;
}

.currency-rates {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: 20px;
}

.rate-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rate-label {
    color: #999;
}

.rate-value {
    font-weight: 500;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    padding: 15px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.subscribe-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: var(--primary-dark);
}

.user-btn,
.notification-btn,
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-btn:hover,
.notification-btn:hover,
.theme-toggle:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    padding: 8px 15px;
    border-radius: 25px;
    min-width: 250px;
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: var(--text-color);
}

.search-box button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0;
}

/* Footer Widgets */
.footer-widgets {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer-widgets .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.widget {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
}

.widget h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.widget-content {
    font-size: 14px;
}

/* Döviz Kurları Widget */
.currency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.currency-item:last-child {
    border-bottom: none;
}

.currency-name {
    color: var(--text-color);
    font-weight: 500;
}

.currency-value {
    color: var(--secondary-color);
    font-weight: 600;
}

.currency-change {
    font-size: 12px;
    font-weight: 500;
}

.currency-change.positive {
    color: var(--success-color);
}

.currency-change.negative {
    color: var(--danger-color);
}

/* Hava Durumu Widget */
.weather-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.weather-item i {
    font-size: 36px;
    color: #ffc107;
}

.weather-info .city {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
}

.weather-info .temp {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
}

.weather-info .desc {
    color: #666;
    font-size: 13px;
}

/* Namaz Vakitleri Widget */
.prayer-time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.prayer-time-item:last-child {
    border-bottom: none;
}

.prayer-name {
    color: var(--text-color);
    font-weight: 500;
}

.prayer-time {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Nöbetçi Eczaneler Widget */
.pharmacy-item {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.pharmacy-item:last-child {
    border-bottom: none;
}

.pharmacy-name {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.pharmacy-address {
    font-size: 13px;
    color: #666;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .currency-rates {
        display: none;
    }
}

@media (max-width: 992px) {
    .footer-widgets .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-top {
        margin-bottom: 10px;
    }

    .search-box {
        display: none;
    }

    .footer-widgets .row {
        grid-template-columns: 1fr;
    }
}

/* Breadcrumb */
.breadcrumb {
    padding: calc(var(--header-height) + 20px) 0 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.breadcrumb-item:after {
    content: '/';
    margin-left: 8px;
    color: #999;
}

.breadcrumb-item:last-child:after {
    display: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Ana İçerik */
.exchange-page {
    padding: 0 0 40px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

/* Genel Stiller */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Döviz Çevirici */
.converter-section {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.converter-container {
    max-width: 600px;
    margin: 0 auto;
}

.converter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.currency-select {
    flex: 1;
    max-width: 180px;
}

.currency-select select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #f8f9fa;
    cursor: pointer;
    height: 54px;
}

.amount-input {
    flex: 2;
    margin-top: 0;
}

.amount-input label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.amount-input input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    height: 54px;
}

.switch-currencies {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
}

.switch-currencies:hover {
    background: #e9ecef;
}

.switch-currencies i {
    color: #666;
    font-size: 20px;
}

.result-row {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.result-label {
    font-size: 18px;
    color: #666;
}

.result-value {
    font-size: 28px;
    font-weight: 500;
    color: #333;
}

.currency-code {
    font-size: 18px;
    color: #666;
    margin-left: 5px;
}

/* Tüm Pariteler */
.rates-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.rates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.last-update {
    font-size: 14px;
    color: #666;
}

.rates-table-wrapper {
    overflow-x: auto;
}

.rates-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.rates-table th {
    background: var(--light-bg);
    padding: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: left;
    border-bottom: 2px solid var(--border-color);
}

.rates-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.rates-table tr:hover td {
    background-color: var(--hover-bg);
}

.currency-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.currency-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.change-value {
    display: flex;
    align-items: center;
    gap: 5px;
}

.change-value.positive {
    color: var(--success-color);
}

.change-value.negative {
    color: var(--danger-color);
}

/* Canlı Grafik */
.chart-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.chart-container {
    background: var(--chart-bg);
    border-radius: 5px;
    overflow: hidden;
}

.chart-periods {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.period-btn {
    padding: 8px 16px;
    border: none;
    background: none;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.period-btn:hover {
    background: var(--hover-bg);
}

.period-btn.active {
    background: var(--primary-color);
    color: #fff;
}

#tradingview_chart {
    height: 500px;
}

/* Footer */
.footer {
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: var(--light-bg);
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Responsive düzenlemeler güncellendi */
@media (max-width: 768px) {
    .header-container {
        height: 50px;
    }

    .logo {
        height: 30px;
    }

    .nav-menu {
        display: none;
    }

    .breadcrumb {
        padding-top: 70px;
    }

    .page-title {
        font-size: 24px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .converter-row {
        flex-direction: column;
        gap: 20px;
    }

    .currency-select {
        width: 100%;
        max-width: 100%;
    }

    .amount-input {
        width: 100%;
        margin-top: 0;
    }

    .switch-currencies {
        transform: rotate(90deg);
        margin: 10px auto;
    }

    .result-value {
        font-size: 24px;
    }

    .rates-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .rates-table th,
    .rates-table td {
        padding: 10px;
        font-size: 14px;
    }

    .chart-periods {
        flex-wrap: wrap;
    }

    .period-btn {
        flex: 1;
        text-align: center;
        min-width: 60px;
    }

    #tradingview_chart {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Ana renkler */
:root {
    --primary-color: #e30613;
    --primary-dark: #b30000;
    --primary-light: #ff1a1a;
    --secondary-color: #333;
    --text-color: #444;
    --light-bg: #f8f9fa;
    --border-color: #eee;
    --hover-bg: #fff5f5;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --chart-bg: #f8f9fa;
    --header-height: 60px;
}

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.5;
}

/* Top Bar */
.top-bar {
    background: #333;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-ticker {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticker-label {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 12px;
}

.ticker-content {
    color: #fff;
}

.currency-rates {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: 20px;
}

.rate-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rate-label {
    color: #999;
}

.rate-value {
    font-weight: 500;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    padding: 15px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.subscribe-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: var(--primary-dark);
}

.user-btn,
.notification-btn,
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-btn:hover,
.notification-btn:hover,
.theme-toggle:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    padding: 8px 15px;
    border-radius: 25px;
    min-width: 250px;
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: var(--text-color);
}

.search-box button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0;
}

/* Footer Widgets */
.footer-widgets {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer-widgets .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.widget {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
}

.widget h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.widget-content {
    font-size: 14px;
}

/* Döviz Kurları Widget */
.currency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.currency-item:last-child {
    border-bottom: none;
}

.currency-name {
    color: var(--text-color);
    font-weight: 500;
}

.currency-value {
    color: var(--secondary-color);
    font-weight: 600;
}

.currency-change {
    font-size: 12px;
    font-weight: 500;
}

.currency-change.positive {
    color: var(--success-color);
}

.currency-change.negative {
    color: var(--danger-color);
}

/* Hava Durumu Widget */
.weather-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.weather-item i {
    font-size: 36px;
    color: #ffc107;
}

.weather-info .city {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
}

.weather-info .temp {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
}

.weather-info .desc {
    color: #666;
    font-size: 13px;
}

/* Namaz Vakitleri Widget */
.prayer-time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.prayer-time-item:last-child {
    border-bottom: none;
}

.prayer-name {
    color: var(--text-color);
    font-weight: 500;
}

.prayer-time {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Nöbetçi Eczaneler Widget */
.pharmacy-item {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.pharmacy-item:last-child {
    border-bottom: none;
}

.pharmacy-name {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.pharmacy-address {
    font-size: 13px;
    color: #666;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .currency-rates {
        display: none;
    }
}

@media (max-width: 992px) {
    .footer-widgets .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-top {
        margin-bottom: 10px;
    }

    .search-box {
        display: none;
    }

    .footer-widgets .row {
        grid-template-columns: 1fr;
    }
}

/* Breadcrumb */
.breadcrumb {
    padding: calc(var(--header-height) + 20px) 0 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.breadcrumb-item:after {
    content: '/';
    margin-left: 8px;
    color: #999;
}

.breadcrumb-item:last-child:after {
    display: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Ana İçerik */
.exchange-page {
    padding: 0 0 40px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

/* Genel Stiller */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Döviz Çevirici */
.converter-section {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.converter-container {
    max-width: 600px;
    margin: 0 auto;
}

.converter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.currency-select {
    flex: 1;
    max-width: 180px;
}

.currency-select select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #f8f9fa;
    cursor: pointer;
    height: 54px;
}

.amount-input {
    flex: 2;
    margin-top: 0;
}

.amount-input label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.amount-input input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    height: 54px;
}

.switch-currencies {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
}

.switch-currencies:hover {
    background: #e9ecef;
}

.switch-currencies i {
    color: #666;
    font-size: 20px;
}

.result-row {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.result-label {
    font-size: 18px;
    color: #666;
}

.result-value {
    font-size: 28px;
    font-weight: 500;
    color: #333;
}

.currency-code {
    font-size: 18px;
    color: #666;
    margin-left: 5px;
}

/* Tüm Pariteler */
.rates-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.rates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.last-update {
    font-size: 14px;
    color: #666;
}

.rates-table-wrapper {
    overflow-x: auto;
}

.rates-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.rates-table th {
    background: var(--light-bg);
    padding: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: left;
    border-bottom: 2px solid var(--border-color);
}

.rates-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.rates-table tr:hover td {
    background-color: var(--hover-bg);
}

.currency-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.currency-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.change-value {
    display: flex;
    align-items: center;
    gap: 5px;
}

.change-value.positive {
    color: var(--success-color);
}

.change-value.negative {
    color: var(--danger-color);
}

/* Canlı Grafik */
.chart-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.chart-container {
    background: var(--chart-bg);
    border-radius: 5px;
    overflow: hidden;
}

.chart-periods {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.period-btn {
    padding: 8px 16px;
    border: none;
    background: none;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.period-btn:hover {
    background: var(--hover-bg);
}

.period-btn.active {
    background: var(--primary-color);
    color: #fff;
}

#tradingview_chart {
    height: 500px;
}

/* Footer */
.footer {
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: var(--light-bg);
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Responsive düzenlemeler güncellendi */
@media (max-width: 768px) {
    .header-container {
        height: 50px;
    }

    .logo {
        height: 30px;
    }

    .nav-menu {
        display: none;
    }

    .breadcrumb {
        padding-top: 70px;
    }

    .page-title {
        font-size: 24px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .converter-row {
        flex-direction: column;
        gap: 20px;
    }

    .currency-select {
        width: 100%;
        max-width: 100%;
    }

    .amount-input {
        width: 100%;
        margin-top: 0;
    }

    .switch-currencies {
        transform: rotate(90deg);
        margin: 10px auto;
    }

    .result-value {
        font-size: 24px;
    }

    .rates-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .rates-table th,
    .rates-table td {
        padding: 10px;
        font-size: 14px;
    }

    .chart-periods {
        flex-wrap: wrap;
    }

    .period-btn {
        flex: 1;
        text-align: center;
        min-width: 60px;
    }

    #tradingview_chart {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
} 