/* Custom Widgets CSS */
.widget-gold {
    background: linear-gradient(135deg, #7C0A02 0%, #3a0000 100%);
    color: #fff;
    padding: 0;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    border: 1px solid #5a0000;
}
.widget-gold-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding: 15px;
}
.widget-gold-header h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.widget-gold-header .gold-icon {
    font-size: 24px;
    color: #FFD700;
    text-shadow: 0 0 5px rgba(255,215,0,0.5);
}
.widget-gold-body {
    padding: 0 15px;
}
.gold-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 15px;
}
.gold-item:last-child {
    border-bottom: none;
}
.gold-item .gold-val {
    font-weight: bold;
    font-size: 16px;
}

.widget-weather {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.widget-weather-header {
    background: linear-gradient(135deg, #a00000 0%, #600000 100%);
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.widget-weather-header h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.widget-weather-header i {
    font-size: 24px;
    color: #ffd180;
}
.widget-weather-body {
    padding: 20px 15px;
    text-align: center;
}
.weather-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.weather-main img {
    width: 64px;
}
.weather-info {
    text-align: left;
}
.weather-info .city {
    font-size: 17px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: capitalize;
}
.weather-info .temp-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.weather-info .temp {
    font-size: 38px;
    font-weight: bold;
    color: #111;
    line-height: 1;
}
.weather-info .desc {
    font-size: 14px;
    color: #555;
    font-weight: 600;
}
.weather-footer {
    padding: 0 15px 15px;
    font-size: 15px;
    text-align: center;
    color: #222;
    font-weight: bold;
}
.weather-footer span {
    color: #d32f2f;
}
