.gold-prices-container {
    text-align: right;
    direction: rtl;
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gold-prices-container h1 {
    color: #d4af37;
    font-size: 32px;
    border-bottom: 2px solid gold;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.gold-prices-container h2 {
    color: #d4af37;
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.gold-prices-container h3 {
    color: #d4af37;
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.exchange-rate-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.karat-price {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.price-details {
    margin-top: 15px;
}

.price-details p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

.price {
    font-weight: bold;
}

.price-change {
    font-weight: bold;
    font-size: 16px;
}

.positive-change {
    color: #27ae60;
}

.negative-change {
    color: #c0392b;
}

.cost {
    color: #555;
    font-size: 16px;
}

.market-analysis {
    background-color: #fff;
    padding: 25px;
    margin-top: 40px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.market-analysis ul {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.market-analysis li {
    margin-bottom: 12px;
    position: relative;
    padding-right: 20px;
}

.market-analysis li:before {
    content: "•";
    color: #d4af37;
    position: absolute;
    right: 0;
}

.notes {
    background-color: #ffeab5;
    border-right: 4px solid gold;
    padding: 15px;
    margin-top: 30px;
    font-size: 16px;
}

.previous-day-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #d4af37;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.previous-day-link:hover {
    background-color: #bf9b30;
    text-decoration: none;
}