/**
 * AW Currency Widget Styles
 */

.aw-currency-widget {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px !important;
    max-width: 100%;
    box-sizing: border-box;
}

.aw-currency-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 4px;
}

/* Table layout */
.aw-currency-table {
    width: 100%;
    border-collapse: collapse;
}

.aw-currency-header {
    display: flex;
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.aw-currency-row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.aw-currency-cell {
    flex: 1;
    padding: 4px;
}

.aw-currency-name {
    display: flex;
    align-items: center;
}

.aw-currency-icon {
    margin-right: 8px;
    font-size: 1.2em;
}

.aw-currency-buy {
    text-align: center;
    color: #28a745;
    font-weight: 600;
}

.aw-currency-sell {
    text-align: center;
    color: #dc3545;
    font-weight: 600;
}

.aw-currency-price {
    text-align: center;
    flex: 2;
    color: #f7931a; /* Bitcoin orange */
    font-weight: 600;
}

.aw-currency-name-header,
.aw-currency-buy-header,
.aw-currency-sell-header {
    text-align: center;
    color: #666;
}

.aw-currency-footer {
    margin-top: 10px;
    text-align: center;
    font-size: 0.8em;
    color: #999;
}

/* Currency icons */
.aw-currency-usd .aw-currency-icon {
    color: #4CAF50;
}

.aw-currency-eur .aw-currency-icon {
    color: #2196F3;
}

.aw-currency-btc .aw-currency-icon {
    color: #f7931a;
}

/* Hover effects */
.aw-currency-row:hover {
    background-color: #f9f9f9;
    transition: background-color 0.2s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
    .aw-currency-header,
    .aw-currency-row {
        font-size: 0.9em;
    }
}

/* Widget in sidebar specific styles */
.widget .aw-currency-widget {
    margin-bottom: 0;
}
