.goldify-trading-bots {
    font-family: inherit;
    max-width: 100%;
    margin: 20px 0;
}

.goldify-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.goldify-bot-list .no-bots {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.goldify-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.goldify-table th, .goldify-table td {
    padding: 12px 15px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

.goldify-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.badge {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 500;
}

.badge-dca { background: #e3f2fd; color: #1565c0; }
.badge-take_profit { background: #e8f5e9; color: #2e7d32; }
.badge-stop_loss { background: #ffebee; color: #c62828; }

.status-indicator {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.status-active { color: #2e7d32; background: #e8f5e9; }
.status-paused { color: #f57f17; background: #fffde7; }
.status-completed { color: #616161; background: #eeeeee; }

.button-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    color: #666;
    transition: color 0.2s;
}

.button-icon:hover { color: #000; }
.button-icon .dashicons-trash:hover { color: #d32f2f; }

/* Modal */
.goldify-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.goldify-modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.close-modal {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.close-modal:hover { color: #333; }

.goldify-modal h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input:focus, .form-group select:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}
